/* Student Result Archive Styles (v2.0) */
.sra-container {
    max-width: 600px;
    margin: 30px auto !important; /* !important ব্যবহার করে নিশ্চিত করা হলো */
    padding: 25px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    font-family: Arial, sans-serif;
    background: #ffffff;
}

/* Header, Logo & Icon Styles (NEW) */
.sra-header {
    text-align: center;
    margin-bottom: 25px;
}
.sra-logo {
    max-width: 200px; 
    height: auto;
    display: block;
    margin: 0 auto 10px;
}
.sra-icons {
    margin-top: 10px;
    display: flex;
    justify-content: center;
}
.sra-icons a {
    margin: 0 10px;
    color: #0056a0;
    text-decoration: none;
    transition: color 0.3s ease;
}
.sra-icons a:hover {
    color: #004075;
}
.sra-icons span {
    font-size: 24px;
}

/* Form Styles */
.sra-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-top: 0;
    margin-bottom: 20px;
}

.sra-form {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    background: #f9f9f9;
}

.sra-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
}

.sra-input {
    width: 75%; /* বিভক্ত করার জন্য */
    float: left;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
    box-sizing: border-box;
    font-size: 16px;
    margin-bottom: 15px;
    height: 44px; /* বাটন এর সাথে মেলাতে */
}

.sra-button {
    width: 25%; /* বিভক্ত করার জন্য */
    float: left;
    padding: 12px;
    background-color: #0056a0; 
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    height: 44px;
}

.sra-button:hover {
    background-color: #004075;
}

.sra-form:after { /* Clearfix for floating elements */
    content: "";
    display: table;
    clear: both;
}

.sra-error {
    color: #D8000C;
    background-color: #FFD2D2;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    margin-top: 15px;
}

/* Result Info Table Styles */
.sra-result-info {
    margin-top: 25px;
}

.sra-info-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 2px solid #0056a0;
    margin-bottom: 15px;
}

.sra-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
}

.sra-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e9e9e9;
    font-size: 15px;
}

.sra-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.sra-table tr td:first-child {
    font-weight: 600;
    color: #444;
    width: 35%;
}

/* Hover Effect (NEW) */
.sra-table tr:hover {
    background-color: #f0f0f0; 
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.sra-table tr:hover td:first-child {
    font-weight: 700;
}