/* ===============================
   GLOBAL STYLE
================================*/
body {
    background-color: #f5f8fa;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

/* ===============================
   HEADER TITLE
================================*/
.page-title {
    margin-top: 20px;
    font-size: 26px;
    font-weight: 600;
    color: #003b73;
}

/* ===============================
   BUTTON STYLE
================================*/
.btn-custom-blue {
    background-color: #0059b3;
    border-color: #004a94;
    color: white;
}

.btn-custom-blue:hover {
    background-color: #004a94;
    color: #e8f4ff;
}

/* ===============================
   TABLE STYLE
================================*/
.table {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    border-collapse: collapse;
}

.table thead {
    background: #003b73;
    color: white;
}

.table th, .table td {
    padding: 10px;
    text-align: left;
}

.table tbody tr:hover {
    background: #e8f4ff;
}

/* ===============================
   IMAGE ZOOM (CLICK TO FULLSIZE)
================================*/
.zoom-img {
    width: 80px;
    border-radius: 6px;
    transition: 0.25s ease;
    cursor: zoom-in;
}

/* --- FULLSCREEN, REAL SIZE ZOOM --- */
.zoomed {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    width: auto !important;
    height: auto !important;
    z-index: 9999;
    box-shadow: 0 0 20px rgba(0,0,0,0.7);
    cursor: zoom-out;
    background: white;
    border-radius: 8px;
}

/* Fullscreen overlay */
.zoom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    display: none;
}

/* ===============================
   FORM STYLE
================================*/
.form-control, .form-select {
    border-radius: 6px;
    border: 1px solid #bfc8d2;
    padding: 6px 10px;
}

.form-control:focus {
    border-color: #0059b3;
    box-shadow: 0 0 6px rgba(0, 89, 179, 0.4);
}

/* ===============================
   LOGIN PAGE
================================*/
.login-container {
    margin-top: 10%;
}

.login-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
}

/* ===============================
   PAGINATION
================================*/
.pagination .page-item.active .page-link {
    background-color: #0059b3;
    border-color: #004a94;
}

.pagination .page-link {
    color: #0059b3;
}

.pagination .page-link:hover {
    background-color: #e6f2ff;
}

/* ===============================
   IMAGE UPLOAD PREVIEW
================================*/
#preview {
    width: 180px;
    margin-top: 10px;
    border-radius: 8px;
    display: none;
}