/* --- Dashboard Container --- */
.tlcm-dashboard-container {
    max-width: 960px;
    margin: 20px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* --- Collapsible Form Section --- */
.tlcm-form-container {
    margin-bottom: 25px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.tlcm-form-header {
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tlcm-form-header h3 {
    margin: 0;
    font-size: 18px;
}

.tlcm-form-toggle-icon {
    transition: transform 0.2s ease-in-out;
}

/* --- Form Content & Grid --- */
.tlcm-form-content {
    padding: 20px;
    display: none; /* Hidden by default */
    border-top: 1px solid #e0e0e0;
}

.tlcm-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.tlcm-form-grid p { margin: 0; }
.tlcm-form-courses { margin-top: 1rem; margin-bottom: 1rem; }

.tlcm-course-list {
    max-height: 150px;
    overflow-y: auto;
    border: 1px solid #ddd;
    padding: 10px;
    background: #fdfdfd;
    border-radius: 4px;
    margin-top: 5px;
}
.tlcm-course-list label { display: block; margin-bottom: 5px; }

/* --- Student List Table --- */
.tlcm-table-container {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.tlcm-table-container h3 { margin-top: 0; margin-bottom: 15px; font-size: 18px; }
.tlcm-table { width: 100%; border-collapse: collapse; }

.tlcm-table th, .tlcm-table td {
    padding: 8px 10px; /* Reduced padding */
    border: 1px solid #e6e6e6;
    vertical-align: middle;
    text-align: left;
    font-size: 14px;
}

.tlcm-table th { background-color: #f9f9f9; font-weight: 600; }

.tlcm-table .tlcm-actions-col {
    width: 150px; /* Fixed width for actions column */
    text-align: center;
}

.tlcm-edit-toggle {
    cursor: pointer;
    color: #0073aa;
    text-decoration: none;
    display: inline-block;
    padding: 4px 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
    line-height: 1.2;
    background-color: #f7f7f7;
}
.tlcm-edit-toggle:hover { background-color: #f0f0f0; }

/* --- Edit Row --- */
.tlcm-edit-row { display: none; }
.tlcm-edit-row td { background: #fafafa; padding: 15px; }

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .tlcm-form-grid { grid-template-columns: 1fr; }
}

/* --- Styles for Actions Column --- */
.tlcm-actions-col {
    width: 170px; /* Give it enough space */
    text-align: center;
}

.tlcm-actions-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px; /* Space between buttons */
}