#tm-student-search {
    max-width: 700px;
    margin: 20px auto;
    padding: 20px;
    background: #548889;
    border: 1px solid #cdeccd;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    font-family: Arial, sans-serif;
}

#tm-student-search form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

#tm-student-search input[type="text"] {
    flex: 1 1 45%;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    height: 54px;
    font-size: 18px;
}

#tm-student-search button {
    padding: 8px 16px;
    background-color: #172626;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#tm-student-search button:hover {
    background-color: #1e7e1e;
}

#tm-search-result .student-details {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

#tm-search-result .student-details strong {
    color: #228B22;
    display: inline-block;
    width: 130px;
}

#tm-search-result .student-details div {
    margin-bottom: 6px;
}

#tm-search-result {
    font-size: 15px;
}

.no-result {
    padding: 10px;
    background: #fff3f3;
    border: 1px solid #e5a8a8;
    color: #a94442;
    border-radius: 6px;
}
.student-details-table {
    width: 100%;
    border-collapse: collapse;
}

.student-details-table th,
.student-details-table td {
    padding: 8px 12px;
    border-bottom: 1px solid #ccc;
    text-align: left;
}

.student-details-table th {
    color: #363635;
    font-weight: 600;
    width: 150px;
}
.student-details h3 {
    text-align: center;
    font-size: 34px;
    color: #1a3030;
    padding: 15px 0px;
}
