/* Styles for both the editor and the frontend */

.myawp-player {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    font-family: Arial, sans-serif;
    max-width: 600px; /* Limit width for better presentation */
    box-sizing: border-box; /* Include padding in width */
}

.myawp-title-artist {
    display: block;
    font-size: 1.1em;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.myawp-player audio {
    width: 100%;
    margin-top: 10px;
    border-radius: 5px;
    outline: none; /* Remove default focus outline */
}

.myawp-download-section {
    margin-top: 15px;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.myawp-download-link {
    display: inline-flex; /* Allows icon and text to align */
    align-items: center;
    text-decoration: none;
    background-color: #f7f0d7;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.myawp-download-link:hover {
    background-color: #a8a38f;
    transform: translateY(-2px); /* Slight lift effect */
}

.myawp-download-link i {
    margin-right: 8px; /* Space between icon and text */
}

.myawp-file-size {
    margin-top: 8px;
    font-size: 0.9em;
    color: #666;
}

/* Editor-specific styles for better preview */
.myawp-editor-block {
    padding: 20px;
    border: 1px dashed #c0c0c0;
    background-color: #f0f0f0;
    border-radius: 5px;
    font-family: sans-serif;
}

.myawp-editor-block .components-text-control__label {
    font-weight: bold;
    margin-bottom: 5px;
}

.myawp-preview {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    text-align: center;
}

.myawp-preview strong {
    display: block;
    margin-bottom: 10px;
    color: #0073aa;
}

.myawp-preview audio {
    width: 90%;
    max-width: 400px;
}

.myawp-preview p {
    font-size: 0.9em;
    color: #555;
    margin-top: 10px;
}

.myawp-preview .fa-download {
    color: #0073aa;
    margin-right: 5px;
}
