/**
 * Question of the Day for Kids - Styles
 */
.church-tools-qotd {
    max-width: 700px;
    margin: 20px auto;
    padding: 25px;
    background: #f7f7f7;
    border-radius: 25px;
    color: #352d3d;
    font-family: 'Comic Sans MS', 'Arial', sans-serif;
    border: 1px solid #ddd;
}

.church-tools-qotd .qotd-title {
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-shadow: none;
    text-align: center;
    color: #352d3d;
    font-weight: bold;
}

.church-tools-qotd .qotd-description {
    text-align: center;
    margin-bottom: 25px;
    color: #352d3d;
    font-size: 1.1rem;
}

.church-tools-qotd .qotd-container {
    margin-bottom: 25px;
}

.church-tools-qotd label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    color: #352d3d;
}

.church-tools-qotd select {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 15px;
    font-size: 1rem;
    margin-bottom: 20px;
    box-sizing: border-box;
    background: white;
    color: #333;
    font-weight: 600;
    cursor: pointer;
}

.church-tools-qotd .category-selector {
    margin-bottom: 25px;
}

.church-tools-qotd .question-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 25px;
    text-align: center;
    border: 2px solid #ff7163;
    color: #352d3d;
}

.church-tools-qotd .question-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.church-tools-qotd .question-text {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: bold;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
    border-radius: 15px;
    padding: 20px;
    color: #352d3d;
}

.church-tools-qotd .question-text.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.church-tools-qotd .question-btn {
    padding: 14px 24px;
    background: #ff7163;
    border: 1px solid #ff7163;
    border-radius: 15px;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.church-tools-qotd .question-btn:hover {
    opacity: 0.9;
}

.church-tools-qotd .question-btn:active {
    opacity: 1;
}

.church-tools-qotd .question-btn.primary {
    background: #352d3d;
    border-color: #352d3d;
}

.church-tools-qotd .question-btn.secondary {
    background: white;
    color: #ff7163;
    border: 2px solid #ff7163;
}

.church-tools-qotd .discussion-tips {
    background: white;
    padding: 20px 25px;
    border-radius: 15px;
    margin-top: 25px;
    border-left: 5px solid #ff7163;
}

.church-tools-qotd .discussion-tips h3 {
    margin-top: 0;
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #352d3d;
}

.church-tools-qotd .discussion-tips ul {
    margin: 0;
    padding-left: 25px;
}

.church-tools-qotd .discussion-tips li {
    margin-bottom: 10px;
    color: #352d3d;
    font-size: 1rem;
}

.church-tools-qotd .saved-questions {
    margin-top: 35px;
}

.church-tools-qotd .saved-questions h3 {
    font-size: 1.4rem;
    margin-bottom: 18px;
    text-align: center;
    color: #352d3d;
}

.church-tools-qotd .saved-list {
    background: white;
    border-radius: 15px;
    padding: 18px;
    min-height: 60px;
}

.church-tools-qotd .saved-item {
    background: #f7f7f7;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-left: 4px solid #ff7163;
    color: #352d3d;
}

.church-tools-qotd .saved-item:hover {
    background: #e8e8e8;
    transform: translateX(5px);
}

.church-tools-qotd .saved-text {
    flex-grow: 1;
    font-size: 1rem;
    font-weight: 600;
}

.church-tools-qotd .remove-saved {
    background: #ff7163;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.church-tools-qotd .remove-saved:hover {
    background: #e63946;
    transform: scale(1.1);
}

.church-tools-qotd .question-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.church-tools-qotd .empty-state {
    text-align: center;
    font-style: italic;
    opacity: 0.6;
    color: #352d3d;
    padding: 10px;
}

/* Notification styles */
.church-tools-qotd .notification-container {
    position: relative;
    margin-top: 15px;
}

.church-tools-qotd .notification-message {
    padding: 15px 20px;
    border-radius: 12px;
    font-weight: bold;
    text-align: center;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.church-tools-qotd .notification-success {
    background: #ff7163;
    color: #fff;
}

.church-tools-qotd .notification-error {
    background: #e63946;
    color: #fff;
}

.church-tools-qotd .notification-info {
    background: #352d3d;
    color: #fff;
}

/* Responsive styles */
@media (max-width: 600px) {
    .church-tools-qotd {
        padding: 18px;
        margin: 12px;
        border-radius: 20px;
    }

    .church-tools-qotd .qotd-title {
        font-size: 1.7rem;
    }

    .church-tools-qotd .question-text {
        font-size: 1.2rem;
        min-height: 60px;
    }

    .church-tools-qotd .question-icon {
        font-size: 2.5rem;
    }

    .church-tools-qotd .question-buttons {
        flex-direction: column;
    }

    .church-tools-qotd .question-btn {
        padding: 12px 18px;
        font-size: 0.95rem;
        width: 100%;
        margin: 5px 0;
    }

    .church-tools-qotd .discussion-tips {
        padding: 15px 18px;
    }
}
