/* Google Drive Audio Embedder Styles */
.gd-audio-embedder-container {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.gd-audio-embedder-title {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.gd-audio-embedder-container audio {
    width: 100%;
    margin-bottom: 10px;
    border-radius: 4px;
}

.gd-audio-embedder-fallback {
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
}

.gd-audio-embedder-fallback iframe {
    border-radius: 4px;
    border: 1px solid #ddd;
}

.gd-audio-embedder-download-button {
    display: inline-block;
    background: #06801E;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.gd-audio-embedder-download-button:hover {
    background: #06801E;
    color: white;
    text-decoration: none;
}

.gd-audio-embedder-download-button:focus {
    outline: 2px solid #06801E;
    outline-offset: 2px;
}

/* Responsive design */
@media (max-width: 768px) {
    .gd-audio-embedder-container {
        padding: 15px;
        margin: 15px 0;
    }
    
    .gd-audio-embedder-title {
        font-size: 16px;
    }
    
    .gd-audio-embedder-download-button {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .gd-audio-embedder-fallback iframe {
        height: 150px;
    }
}

