﻿
:root {
    --primary-blue: #2f5ea8;
    --secondary-blue: #3da0d8;
    --accent-green: #5bd62f;
    --dark-bg: #0b0f1a;
    --light-bg: #f4f7fb;
}
body {
    background: var(--light-bg);
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
}
.form-control:focus {
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 2px rgba(61,160,216,0.2);
}
/* Wrapper */
.main-wrapper {
    padding: 20px 30px;
}

/* Header */
.header-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 18px 25px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.logo {
    height: 52px;
    object-fit: contain;
}

/* Cards */
.control-card, .table-card {
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    border: none;
}
/* Buttons */
.btn {
    height: 45px;
    border-radius: 8px;
    font-weight: 500;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border: none;
}

.btn-success {
    background: var(--accent-green);
    border: none;
    color: #000;
    font-weight: 600;
}
/* Inputs */
.form-control, .form-select {
    height: 45px;
    border-radius: 8px;
}

/* Table */
.table {
    font-size: 15px;
}

.dataTables_filter input {
    border-radius: 8px !important;
    padding: 6px;
}
/* TABLE WRAPPER */
.custom-table {
    border-radius: 12px;
    overflow: hidden;
    font-family: 'Segoe UI', 'Inter', sans-serif;
}

    /* HEADER */
    .custom-table thead th {
        text-align: center !important;
        vertical-align: middle !important;
        background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
        color: #fff;
        font-weight: 600;
        font-size: 15px;
        border: 1px solid #dbe4f0;
        padding: 14px;
    }

    /* BODY */
    .custom-table tbody td {
        text-align: center !important;
        vertical-align: middle !important;
        font-size: 14px;
        padding: 12px;
        border: 1px solid #e3e8f0;
    }

    /* ALTERNATE ROWS */
    .custom-table tbody tr:nth-child(even) {
        background-color: #eef5ff;
    }

    /* HOVER */
    .custom-table tbody tr:hover {
        background-color: #dbe9ff;
    }

    /* INPUT */
    .custom-table input {
        text-align: center;
        border-radius: 8px;
        border: 1px solid #d0d7e2;
        height: 40px;
    }

/* REMOVE DATATABLE DEFAULT HEADER STYLE */
table.dataTable thead th {
    text-align: center !important;
}
.custom-table input:disabled {
    background-color: #eef3f9;
    color: #6c757d;
    font-weight: 500;
}
.modal-custom {
    max-width: 90% !important;
    width: 90%;
    margin: auto;
}

.modal-content {
    border-radius: 14px;
}
#doctorTable thead input {
    width: 100%;
    padding: 4px;
    box-sizing: border-box;
}

#doctorTable th {
    text-align: center;
    vertical-align: middle;
}

#doctorTable td {
    text-align: center;
}