.date-selector {
    display: flex;
    align-items: center;
}

.date-selector .form-control {
    width: auto;
}

.ca-item {
    padding: 1rem 1.25rem;
    transition: background-color 0.2 ease;
}

.ca-item-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.ca-item-body {
    font-size: 0.95rem;
    color: #475569;
}

/* Quiz Styles */
.quiz-question {
    font-weight: 600;
    margin-bottom: 1rem;
}
.quiz-options .form-check {
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
}
.quiz-options .form-check:hover {
    background-color: #f8fafc;
}


.ca-item:hover {
    background-color: #fcfdfe;
}

/* 1. Quill HTML Content Styling (Very Important) */
.modern-content {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #4b5563;
}

/* Points (Bullets) ko sahi margin dena */
.modern-content ul, .modern-content ol {
    padding-left: 1.25rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.modern-content li {
    margin-bottom: 0.5rem;
}

/* Bold text coming from Quill */
.modern-content strong {
    color: #1f2937;
    font-weight: 700;
}

/* Modern Navigation Buttons */
.btn-nav-date {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: white;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.2), 0 2px 4px -1px rgba(79, 70, 229, 0.1);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-nav-date:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3), 0 4px 6px -2px rgba(79, 70, 229, 0.15);
    color: white;
}

.btn-nav-date:active {
    transform: translateY(0);
}

.date-input-custom {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    color: #334155;
    transition: all 0.2s ease;
}

.date-input-custom:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.ca-indicator i {
    font-size: 1.2rem;
}
