@import url('https://fonts.googleapis.com/css?family=Ancizar Sans');

html {
    font-size: 16px;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    /* margin-bottom: 60px; */
    background-color: #ffffff;
    font-family: "Ancizar Sans";
}


@font-face {
    font-family: 'Sego';
    src: url('/Fonts/SEGO.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.ecertify-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f8f9fa;
    /* background: linear-gradient(90deg, #fffef0 0%, #eef2f7 100%); */
    border-radius: 18px;
    padding: 15px 28px;
    margin: 22px auto;
    max-width: 1050px;
    box-shadow: 0 2px 8px 0 rgba(44, 62, 80, 0.07);
}


.ecertify-navbar-brand {
    display: flex;
    align-items: center;
}


.ecertify-name {
    font-family: 'Sego', Arial, sans-serif;
    font-weight: 900;
    font-size: 1.62rem;
    letter-spacing: 1.3px;
    line-height: 1.0;
    vertical-align: middle;
}

.ecertify-navbar-links {
    display: flex;
    gap: 38px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ecertify-link {
    color: #003934 !important;
    font-size: 1.07rem;
    opacity: 0.88;
    text-decoration: none;
    font-weight: 500;
    padding-bottom: 2px;
    transition: color 0.2s;
    border-bottom: 2.5px solid transparent;
}

.ecertify-link:hover,
.ecertify-active {
    color: #d7d181;
    opacity: 1;
}

.ecertify-active {
    border-bottom: 2.5px solid #dad04a;
}

.ecertify-navbar-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.ecertify-icon-btn {
    background: none;
    border: none;
    font-size: 1.35rem;
    margin-right: 5px;
    cursor: pointer;
}

.ecertify-avatar {
    width: 33px;
    height: 33px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid #e5e7eb;
}

.offcanvas-start {
    min-width: 500px !important;
}

.error-message {
    color: red;
    font-size: 13px;
}



.table-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    overflow: hidden;
    margin-bottom: 20px;
    
}

.table {
    margin-bottom: 0;
    width: 100%;
    border-collapse: collapse;
}
.table-scroll {
    max-height: 78vh; 
    overflow-y: auto;
    overflow-x: hidden;
}
.table thead {
    background-color: #f8f9fa;
}

.table thead th {
    color: #8898aa;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-bottom: 1px solid #e9ecef;
    padding: 15px 25px;
    vertical-align: middle;
}

.table tbody td {
    color: #525f7f;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 20px 25px;
    vertical-align: middle;
    border-bottom: 1px solid #e9ecef;
}

.table tbody tr:hover {
    background-color: #f6f9fc;
    transition: background-color 0.2s ease;
}

.table tbody td:first-child {
    color: #8898aa;
    font-weight: 600;
}

.table tbody td a {
    color: #5e72e4;
    text-decoration: none;
    font-weight: 600;
}

.table tbody td a:hover {
    text-decoration: underline;
}