#conversation-response {
    max-height: 400px;
    overflow-y: auto;
    padding: 1.5rem;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
}

.response-item, #upload-conversation-response, #feedback {
    margin-bottom: 10px;
    padding: 1.5rem;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
}

hr {
    margin: 10px 0;
    border: 0;
    border-top: 1px solid #eee;
}

.card-no-border {
    border: none;
}

.card-body-bordered {
    border: 1px solid #ddd;
    padding: 1rem;
}

.card-img-custom {
    width: 60%;
    margin: 0 auto;
    display: block;
    position: relative;
    top: 30px;
    z-index: 1;
}

.highlight {
    background-color: yellow;
    font-weight: bold;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-custom {
    background-color: #F4F6B8;
    color: #333;
    border: none;
    padding: 15px;
    font-size: 18px;
    transition: color 0.3s;
    flex: 1 1 auto;
    min-width: 120px;
    text-align: center;
    margin: 5px;
}

.btn-custom:hover {
    background-color: #F08080;
    color: #faf9fc;
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .card-img-top {
        display: none;
    }
}

@media (max-width: 768px) {
    .btn-custom {
        flex: 1 1 100%;
        font-size: 16px;
    }
    .card-img-top {
        display: none;
    }
    .container {
        max-width: 100%;
        margin: 0;
    }
    .pearl {
        display: none;
    }
}

.bg-archive {
    background-color: #EAFAF1;
}

.caption-div {
    background-color: #fff3cd;
    border-left: 8px solid #ffa502;
    padding: 20px;
    margin-bottom: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.caption-title {
    font-size: 24px;
    color: #d88700;
    font-weight: bold;
}

.caption-text {
    font-size: 1.25rem;
    color: #666;
}

.card-custom {
    border-left: 8px solid #28a745;
    background-color: #f8f9fa;
    margin-bottom: 20px;
}

.card-header-custom {
    background-color: #28a745;
    color: white;
    padding: 10px 15px;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.card-body-custom {
    padding: 20px;
}

.card-title-custom {
    margin-bottom: 15px;
}

.card-list {
    list-style-type: none;
    padding-left: 0;
}

.card-list li {
    padding-bottom: 5px;
}

.card-list li:before {
    content: "\2713\0020";
    color: #28a745;
}

.accordion-content {
    display: none;
    padding: 10px;
    border: 1px solid #ddd;
    border-top: none;
}

.card-body.active {
    background-color: #d1e7dd;
}

.lbar {
    background: linear-gradient(90deg, #0FB70D, #056304);
    font-family: 'Arial', sans-serif;
    font-size: 1.2rem;
    border-bottom: 2px solid #035C01;
}

.lbar h5 {
    margin: 0;
    padding: 10px 0;
}

.lbar a {
    color: white;
    transition: color 0.3s ease-in-out;
}

.lbar a:hover {
    color: #ffd700;
}

.lesson-plans {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lesson-plan {
    background-color: #fff;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.lesson-plan h3 {
    margin: 0;
    font-size: 20px;
    color: #333;
}

.lesson-plan p {
    margin: 5px 0;
    color: #666;
}

.read-more-container {
    margin-top: 10px;
}

.read-more, .read-less {
    color: #007bff;
    cursor: pointer;
    text-decoration: underline;
    display: block;
    background-color: #ffffff;
}

.download-link {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 14px;
    background-color: #12D30F;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
}

.download-link:hover {
    background-color: #DAF7A6;
}

.custom-card {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 0.25rem;
}

.custom-card-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.custom-card-text {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: black;
}

#loading-spinner {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    width: 100px;
    height: 100px;
    border: 10px solid rgba(0, 0, 0, 0.1);
    border-top: 10px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.clickable-card {
    cursor: pointer;
}

.jeopardy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.jeopardy-cell {
    background-color: #007bff;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
}

.jeopardy-cell:hover {
    background-color: #0056b3;
}

.card-content {
    display: none;
    font-size: 1rem;
    color: white;
}

.card-content.visible {
    display: block;
}

.points {
    font-size: 2rem;
    color: white;
}

.btn-3d {
    background: linear-gradient(to bottom, #28a745, #218838);
    border: none;
    border-radius: 5px;
    box-shadow: 0 4px #1e7e34;
    color: white;
    font-size: 1.5rem;
    padding: 10px 20px;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.btn-3d:active {
    box-shadow: 0 2px #1e7e34;
    transform: translateY(2px);
}
