﻿/* Feedback Form Styling */

/* Predictive dropdown styling */
.predictive-input {
    position: relative;
}

.dropdown-menu {
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
}

.dropdown-item {
    cursor: pointer;
    padding: 8px 12px;
}

    .dropdown-item:hover {
        background-color: #f8f9fa;
    }

/* Styling for past/completed items */
.past-item {
    font-style: italic;
    color: #6c757d;
}

.completed-course {
    font-style: italic;
    color: #6c757d;
}

    .completed-course::after {
        content: " ✓";
        color: #28a745;
    }

/* Feedback table styling */
.feedback-table {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.table-borderless th {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 12px 15px;
    font-weight: 600;
}

.table-borderless td {
    padding: 12px 15px;
    vertical-align: middle;
    border-bottom: 1px solid #f2f2f2;
}

.table-borderless tr:last-child td {
    border-bottom: none;
}

.form-check-input {
    cursor: pointer;
}

/* Section styling */
.section-title {
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #6c3524;
    color: #4c2b20;
}

.evaluation-section {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Button styling */
.brown-mahogany-btn {
    background-color: #4c2b20;
    border-color: #4c2b20;
    color: white;
    padding: 8px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    min-width: 120px;
    max-width: 180px;
}

    .brown-mahogany-btn:hover {
        background-color: #6c3524;
        border-color: #6c3524;
        color: white;
        box-shadow: 0 3px 6px rgba(0,0,0,0.2);
    }

    .brown-mahogany-btn:active {
        transform: scale(0.98);
    }

/* Form responsiveness */
@media (max-width: 768px) {
    .row-gap-3 > div {
        margin-bottom: 1rem;
    }
}
