/**
 * Meditation Song Generator Styles
 *
 * @package    Pn_Wph
 * @subpackage Pn_Wph/assets/css
 */

.pn-wph-meditation-song-generator {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.pn-wph-meditation-song-generator .pn-wph-form-section {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.pn-wph-meditation-song-generator .pn-wph-form-section h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.pn-wph-meditation-song-generator textarea {
    min-height: 120px;
    resize: vertical;
}

.pn-wph-meditation-songs-panel {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.pn-wph-meditation-song-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.pn-wph-meditation-song-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.pn-wph-song-header h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 1.2em;
}

.pn-wph-song-header p {
    margin: 0;
    color: #666;
    font-size: 0.9em;
}

.pn-wph-song-player {
    margin: 20px 0;
}

.pn-wph-song-player audio {
    width: 100%;
    outline: none;
}

.pn-wph-song-actions {
    margin-top: 20px;
}

.pn-wph-song-actions .pn-wph-btn {
    margin: 0 5px;
}

.pn-wph-song-status {
    background: #f0f0f0;
    border-radius: 4px;
    margin: 20px 0;
}

.pn-wph-song-status p {
    margin: 10px 0;
    color: #666;
}

.pn-wph-notice {
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
}

.pn-wph-notice-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.pn-wph-notice-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.pn-wph-notice-warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
}

.pn-wph-loader-circle-wrapper {
    text-align: center;
    padding: 20px;
}

.pn-wph-loader-circle {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}

.pn-wph-loader-circle div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 51px;
    height: 51px;
    margin: 6px;
    border: 6px solid #333;
    border-radius: 50%;
    animation: pn-wph-loader-circle 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #333 transparent transparent transparent;
}

.pn-wph-loader-circle div:nth-child(1) {
    animation-delay: -0.45s;
}

.pn-wph-loader-circle div:nth-child(2) {
    animation-delay: -0.3s;
}

.pn-wph-loader-circle div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes pn-wph-loader-circle {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.pn-wph-text-muted {
    color: #666;
}

.pn-wph-display-none {
    display: none !important;
}

