.scripture-generator {
    max-width: 800px;
    margin: 30px auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.generator-container {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    text-align: center;
}

.generator-container h3 {
    color: #352d3d;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.verse-day-section {
    margin-bottom: 20px;
}

.verse-day-btn {
    background: #352d3d;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.verse-day-btn:hover {
    background: #4a3f51;
    transform: translateY(-2px);
}

.filter-section {
    margin-bottom: 25px;
}

.filter-section label {
    display: block;
    color: #352d3d;
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 600;
}

.testament-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    background: #f3f4f6;
    color: #352d3d;
    border: 2px solid #d1d5db;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: #e5e7eb;
    border-color: #ff4c60;
}

.filter-btn.active {
    background: #ff4c60;
    color: #fff;
    border-color: #ff4c60;
}

.generate-btn {
    background: #ff4c60;
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 76, 96, 0.3);
    transition: all 0.3s ease;
    margin: 20px 0;
}

.generate-btn:hover {
    background: #e63950;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 76, 96, 0.4);
}

.loading {
    color: #352d3d;
    font-size: 16px;
    margin: 20px 0;
}

.scripture-display {
    margin-top: 30px;
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scripture-card {
    background: #f9fafb;
    padding: 35px 30px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    margin-bottom: 20px;
}

.scripture-text {
    font-family: Georgia, serif;
    font-size: 20px;
    line-height: 1.8;
    color: #352d3d;
    margin-bottom: 20px;
    font-style: italic;
}

.scripture-reference {
    font-size: 16px;
    font-weight: 600;
    color: #ff4c60;
    margin: 0;
}

.action-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.action-btn {
    background: #fff;
    color: #ff4c60;
    border: 2px solid #ff4c60;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.action-btn:hover {
    background: #ff4c60;
    color: #fff;
    transform: translateY(-2px);
}

.share-buttons {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.share-label {
    color: #352d3d;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.share-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    margin: 0 5px;
    transition: all 0.3s ease;
    color: #fff;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.twitter:hover {
    background: #0d8bd9;
}

.share-btn.facebook {
    background: #4267b2;
}

.share-btn.facebook:hover {
    background: #365899;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.whatsapp:hover {
    background: #1ebd57;
}

.copy-success,
.favorite-success {
    color: #059669;
    background: #d1fae5;
    padding: 10px 20px;
    border-radius: 8px;
    margin-top: 15px;
    font-weight: 600;
    border: 1px solid #059669;
}

.favorite-success {
    color: #ff4c60;
    background: #ffe5e9;
    border-color: #ff4c60;
}

.favorites-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #e5e7eb;
}

.favorites-toggle {
    background: #352d3d;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.favorites-toggle:hover {
    background: #4a3f51;
}

.favorites-list {
    margin-top: 20px;
    max-height: 400px;
    overflow-y: auto;
}

.favorite-item {
    background: #f9fafb;
    padding: 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    text-align: left;
}

.favorite-item-text {
    font-family: Georgia, serif;
    font-size: 16px;
    color: #352d3d;
    margin-bottom: 10px;
    font-style: italic;
}

.favorite-item-ref {
    font-size: 14px;
    font-weight: 600;
    color: #ff4c60;
    margin-bottom: 10px;
}

.favorite-item-actions {
    display: flex;
    gap: 10px;
}

.favorite-item-btn {
    padding: 6px 15px;
    font-size: 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.favorite-item-btn.delete {
    background: #ef4444;
    color: #fff;
}

.favorite-item-btn.delete:hover {
    background: #dc2626;
}

.favorite-item-btn.copy {
    background: #ff4c60;
    color: #fff;
}

.favorite-item-btn.copy:hover {
    background: #e63950;
}

.empty-favorites {
    color: #6b7280;
    font-size: 14px;
    padding: 20px;
    font-style: italic;
}

@media (max-width: 600px) {
    .generator-container {
        padding: 30px 20px;
    }

    .testament-buttons {
        flex-direction: column;
    }

    .filter-btn {
        width: 100%;
    }

    .generate-btn {
        font-size: 16px;
        padding: 14px 30px;
    }

    .scripture-text {
        font-size: 18px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .action-btn {
        width: 100%;
    }

    .share-btn {
        margin: 5px 0;
        width: 100%;
    }
}
