.student-results-search {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.student-results-search label {
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.student-results-search input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.student-results-search input[type="submit"] {
    width: 100%;
    background: #F36D33;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.student-results-search input[type="submit"]:hover {
    background: #005177;
}

/* Style the results */
.results-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
}

.result-item {
    background: white;
    border-left: 5px solid #F36D33;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.result-item h3 {
    color: #F36D33;
    font-size: 18px;
    margin-bottom: 10px;
}

.result-item p {
    font-size: 14px;
    color: #555;
    margin: 5px 0;
}
