@font-face {
    font-family: 'Tahoma';
    src: local('Tahoma');
}

body {
    font-family: Tahoma, Arial, serif;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    background-color: #ECECEC;
    font-size: 11px;
    color: #000;
}

.main-container {
    background: white;
    border: 1px solid #808080;
    margin: 2px;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.top-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 5px;
    border-bottom: 1px solid #808080;
    min-height: 42px;
}

.logo {
    width: 35px;
    height: 35px;
    /*background: linear-gradient(45deg, #FFD700, #FFA500);*/
    border-radius: 50%;
}

.center-header {
    text-align: center;
    line-height: 1.5;
}

.clock-section {
    white-space: nowrap;
}

.check-icon {
    width: 16px;
    height: 16px;
    background: #90EE90;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #006400;
    font-size: 10px;
    margin-right: 5px;
    border: 1px solid #006400;
}

.blue-link {
    color: #000080;
    text-decoration: underline;
    padding: 3px 0;
    font-size: 11px;
    text-align: center;
    cursor: pointer;
    background-color: #F5F5F5;
    border-bottom: 1px solid #D3D3D3;
}

.content-section {
    padding: 5px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
}

.student-photo {
    width: 110px;
    height: 140px;
    border: 1px solid #000;
    background-color: #F5F5F5;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px 10px;
    align-content: start;
}

.info-item {
    display: flex;
    gap: 5px;
    align-items: center;
    min-height: 20px;
}

.info-label {
    color: #000080;
    font-weight: 500;
}

table {
    width: calc(100% - 10px);
    border-collapse: collapse;
    margin: 5px;
}

th, td {
    border: 1px solid #808080;
    padding: 2px 4px;
    text-align: center;
    font-size: 11px;
    height: 20px;
}

th {
    background: #E8E8E8;
    font-weight: normal;
}

tr:nth-child(even) {
    background-color: #FAFAFA;
}

.view-link {
    color: #FF0000;
    text-decoration: underline;
    cursor: pointer;
}

.gpa-bar {
    background: #E8E8E8;
    padding: 3px 8px;
    margin: 5px;
    text-align: left;
    border: 1px solid #808080;
    font-size: 10px;
}

.actions-bar {
    padding: 3px;
    display: flex;
    gap: 25px;
    justify-content: center;
    border-bottom: 1px solid #808080;
}

.action-button {
    width: 24px;
    height: 24px;
    cursor: pointer;
    border: 1px solid #C0C0C0;
    border-radius: 2px;
}

.footer {
    background: #006400;
    color: white;
    padding: 3px 5px;
    margin-top: 1px;
    font-size: 11px;
    height: 16px;
    display: flex;
    align-items: center;
}

.c1-box{
    text-align: center;
    scale: 1.3;
}

.c1{
    background-image: url(images/c1.png);
    background-repeat: no-repeat;
    height: 21px;
    width: 70px;
    overflow: hidden;
}
.c1:hover{
    scale: 1.4;
}

.price{
    display: none;
    z-index: 999999;
    background-color: #c5c5c5;
    position: absolute;
    width: 80%;
    height: 40%;
    border: 2px solid black;
    overflow: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}


