/* Frontend table styling for Student Credentials Manager Simple */
.scm-frontend-table { 
    width:100%; 
    border-collapse:collapse; 
    margin-bottom:20px; 
    border:1px solid #000; /* outer border */
    background-color: #d7e4bc; /* swapped table background */
}

.scm-frontend-table th, .scm-frontend-table td { 
    border:1px solid #000; /* cell border */
    padding:8px; 
}

.scm-frontend-table th { 
    background-color:#fcd5b4; /* swapped header color */
    color:#31373E; 
    text-align:left; 
}

/* Submit button */
form input[type="submit"] { 
    background-color:#1a9a93; 
    color:#fff; 
    padding:6px 12px; 
    border:none; 
    cursor:pointer; 
    margin-top:10px; 
}
form input[type="submit"]:hover { 
    background-color:#157f79; 
}
