
/* =========================================================
   AMPMST - MASTER DATA
   MASTER CSS
========================================================= */


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family:
        Inter,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    color: #172033;
    background: #f4f7fb;
}

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

input,
textarea {
    outline: none;
}

.hidden {
    display: none !important;
}


/* =========================================================
   COMMON PAGE
========================================================= */

.page {
    min-height: 100vh;
}


/* =========================================================
   LOGIN PAGE
========================================================= */

.login-page {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 100vh;
    overflow: hidden;

    background: #eef2f7;
}


/* BACKGROUND FOTO EPSON */

.login-background {
    position: absolute;
    inset: 0;

    background-image:
        url("../images/epson-bg.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0.28;

    transform: scale(1.04);

    filter:
        saturate(0.85)
        contrast(0.95);
}


/* OVERLAY */

.login-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(248, 250, 253, 0.96) 0%,
            rgba(248, 250, 253, 0.90) 42%,
            rgba(248, 250, 253, 0.70) 100%
        );
}


/* LOGIN WRAPPER */

.login-wrapper {
    position: relative;
    z-index: 2;

    width: min(440px, calc(100% - 32px));
}


/* LOGIN CARD */

.login-box {
    position: relative;

    padding: 42px;

    border:
        1px solid
        rgba(255, 255, 255, 0.85);

    border-radius: 24px;

    background:
        rgba(255, 255, 255, 0.88);

    box-shadow:
        0 30px 80px
        rgba(25, 42, 70, 0.18);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}


/* TOP ACCENT */

.login-box::before {
    content: "";

    position: absolute;

    top: 0;
    left: 42px;
    right: 42px;

    height: 4px;

    border-radius:
        0 0 10px 10px;

    background:
        linear-gradient(
            90deg,
            #0b63f6,
            #3d8bfd
        );
}


/* LOGIN BRAND */

.login-brand {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-bottom: 36px;
}


.login-brand-mark {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;

    border-radius: 15px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;

    background:
        linear-gradient(
            145deg,
            #0b63f6,
            #164dc0
        );

    box-shadow:
        0 10px 25px
        rgba(11, 99, 246, 0.25);
}


.login-logo {
    color: #152033;

    font-size: 21px;
    font-weight: 800;

    letter-spacing: 1.5px;
}


.login-brand-text {
    margin-top: 3px;

    color: #8290a5;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.6px;
}


/* LOGIN HEADING */

.login-heading {
    margin-bottom: 27px;
}


.login-heading h1 {
    margin-bottom: 8px;

    color: #172033;

    font-size: 30px;
    line-height: 1.2;
    font-weight: 750;
}


.login-heading p {
    color: #778399;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   FORM
========================================================= */

.form-group {
    margin-bottom: 20px;
}


.form-group label {
    display: block;

    margin-bottom: 8px;

    color: #344054;

    font-size: 13px;
    font-weight: 650;
}


.input-wrapper {
    position: relative;

    display: flex;
    align-items: center;
}


.input-icon {
    position: absolute;
    left: 15px;

    width: 20px;

    color: #8a97aa;

    font-size: 15px;

    pointer-events: none;
}


.input-wrapper input {
    width: 100%;

    height: 50px;

    padding:
        0 45px
        0 44px;

    border:
        1px solid
        #dce2eb;

    border-radius: 12px;

    color: #172033;

    background: rgba(255, 255, 255, 0.92);

    font-size: 14px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


.input-wrapper input::placeholder {
    color: #a4afbf;
}


.input-wrapper input:focus {
    border-color: #4d8df7;

    background: #ffffff;

    box-shadow:
        0 0 0 4px
        rgba(11, 99, 246, 0.09);
}


.password-toggle {
    position: absolute;

    right: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border: 0;
    border-radius: 8px;

    color: #78869b;

    background: transparent;

    font-size: 14px;
}


.password-toggle:hover {
    background: #f0f4fa;
}


/* =========================================================
   LOGIN BUTTON
========================================================= */

.btn-login {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    height: 52px;

    margin-top: 8px;
    padding: 0 18px 0 22px;

    border: 0;
    border-radius: 12px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #0b63f6,
            #1556c7
        );

    box-shadow:
        0 12px 24px
        rgba(11, 99, 246, 0.22);

    font-size: 13px;
    font-weight: 750;

    letter-spacing: 1px;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.btn-login:hover {
    transform: translateY(-2px);

    box-shadow:
        0 16px 30px
        rgba(11, 99, 246, 0.28);
}


.login-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    border-radius: 9px;

    background:
        rgba(255, 255, 255, 0.14);

    font-size: 18px;
}


/* LOGIN MESSAGE */

.message {
    min-height: 20px;

    margin-top: 14px;

    text-align: center;

    color: #d14343;

    font-size: 12px;
    line-height: 1.5;
}


/* LOGIN FOOTER */

.login-footer {
    display: flex;
    justify-content: center;
    gap: 8px;

    margin-top: 25px;

    color: #9aa6b7;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.7px;
}


/* =========================================================
   APPLICATION
========================================================= */

.app-page {
    min-height: 100vh;

    background:
        #f4f7fb;
}


/* =========================================================
   HEADER
========================================================= */

.app-header {
    position: sticky;
    top: 0;
    z-index: 50;

    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 76px;

    padding:
        0 5%;

    border-bottom:
        1px solid
        #e6ebf2;

    background:
        rgba(255, 255, 255, 0.94);

    box-shadow:
        0 4px 20px
        rgba(31, 45, 61, 0.04);

    backdrop-filter: blur(12px);
}


.app-brand {
    display: flex;
    align-items: center;

    gap: 12px;
}


.app-brand-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border-radius: 12px;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            #0b63f6,
            #164dc0
        );

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}


.brand-title {
    color: #172033;

    font-size: 16px;
    font-weight: 800;

    letter-spacing: 1px;
}


.brand-subtitle {
    margin-top: 2px;

    color: #929daf;

    font-size: 10px;
    font-weight: 600;
}


.header-right {
    display: flex;
    align-items: center;

    gap: 20px;
}


.header-status {
    display: flex;
    align-items: center;

    gap: 7px;

    color: #6d7b90;

    font-size: 11px;
    font-weight: 600;
}


.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #26a269;

    box-shadow:
        0 0 0 4px
        rgba(38, 162, 105, 0.10);
}


.btn-logout {
    display: flex;
    align-items: center;

    gap: 7px;

    height: 38px;

    padding: 0 14px;

    border:
        1px solid
        #dce2ea;

    border-radius: 10px;

    color: #536176;

    background: #ffffff;

    font-size: 12px;
    font-weight: 650;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}


.btn-logout:hover {
    color: #d14343;

    border-color: #f0c9c9;

    background: #fff8f8;
}


/* =========================================================
   MAIN
========================================================= */

.app-main {
    width: min(1180px, calc(100% - 40px));

    margin:
        0 auto;

    padding:
        38px 0 70px;
}


/* =========================================================
   DASHBOARD HERO
========================================================= */

.dashboard-hero {
    position: relative;

    min-height: 190px;

    margin-bottom: 25px;

    padding: 34px 38px;

    overflow: hidden;

    border-radius: 20px;

    color: #ffffff;

    background:
        linear-gradient(
            120deg,
            #0d4fc0,
            #1469e8
        );

    box-shadow:
        0 16px 35px
        rgba(15, 82, 190, 0.17);
}


.dashboard-hero::after {
    content: "";

    position: absolute;

    right: -70px;
    bottom: -110px;

    width: 340px;
    height: 340px;

    border-radius: 50%;

    border:
        50px solid
        rgba(255, 255, 255, 0.06);
}


.hero-text {
    position: relative;
    z-index: 2;

    max-width: 600px;
}


.eyebrow,
.section-eyebrow {
    display: block;

    margin-bottom: 9px;

    color: #8eabd9;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.8px;
}


.dashboard-hero .eyebrow {
    color:
        rgba(255, 255, 255, 0.68);
}


.dashboard-hero h1 {
    margin-bottom: 7px;

    font-size: 31px;
    line-height: 1.2;
    font-weight: 750;
}


.dashboard-hero p {
    color:
        rgba(255, 255, 255, 0.78);

    font-size: 13px;
    line-height: 1.6;
}


.hero-decoration {
    position: absolute;

    right: 65px;
    top: 35px;

    color:
        rgba(255, 255, 255, 0.07);

    font-size: 90px;
    font-weight: 900;

    letter-spacing: 5px;
}


/* =========================================================
   STATISTICS
========================================================= */

.dashboard-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;

    margin-bottom: 45px;
}


.dashboard-card {
    position: relative;

    min-height: 230px;

    padding: 25px;

    overflow: hidden;

    border:
        1px solid
        #e7ebf2;

    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 8px 25px
        rgba(35, 51, 75, 0.05);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.dashboard-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 16px 32px
        rgba(35, 51, 75, 0.08);
}


.dashboard-card::after {
    content: "";

    position: absolute;

    right: -40px;
    bottom: -70px;

    width: 190px;
    height: 190px;

    border-radius: 50%;

    background:
        rgba(11, 99, 246, 0.035);
}


.card-top {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    border-radius: 14px;

    background: #edf4ff;

    font-size: 20px;
}


.card-label {
    color: #a1aaba;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.2px;
}


.card-content {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;

    margin-top: 25px;
}


.card-title {
    color: #647187;

    font-size: 13px;
    font-weight: 650;
}


.card-content strong {
    margin-top: 4px;

    color: #172033;

    font-size: 38px;
    line-height: 1.1;
    font-weight: 800;
}


.card-description {
    margin-top: 5px;

    color: #a0aaba;

    font-size: 11px;
}


.card-action {
    position: absolute;

    left: 25px;
    bottom: 20px;

    z-index: 3;

    display: flex;
    align-items: center;

    gap: 9px;

    padding: 0;

    border: 0;

    color: #1765d8;

    background: transparent;

    font-size: 11px;
    font-weight: 750;
}


.card-action span {
    font-size: 16px;

    transition:
        transform 0.2s ease;
}


.card-action:hover span {
    transform: translateX(4px);
}


/* =========================================================
   QUICK MENU
========================================================= */

.quick-section {
    margin-top: 5px;
}


.dashboard-heading {
    margin-bottom: 20px;
}


.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 25px;

    margin-bottom: 24px;
}


.section-heading h1,
.section-heading h2 {
    margin-bottom: 5px;

    color: #172033;

    font-weight: 750;
}


.section-heading h1 {
    font-size: 26px;
}


.section-heading h2 {
    font-size: 22px;
}


.section-heading p {
    color: #8b97a9;

    font-size: 12px;
    line-height: 1.6;
}


.menu-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}


.menu-card {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 145px;

    padding: 23px;

    text-align: left;

    border:
        1px solid
        #e4e9f0;

    border-radius: 17px;

    background: #ffffff;

    box-shadow:
        0 7px 22px
        rgba(31, 45, 61, 0.04);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}


.menu-card:hover {
    transform: translateY(-3px);

    border-color:
        #c8daf7;

    box-shadow:
        0 15px 30px
        rgba(31, 45, 61, 0.08);
}


.menu-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 54px;
    height: 54px;

    margin-right: 18px;

    border-radius: 15px;

    background: #edf4ff;

    font-size: 21px;
}


.menu-card-content {
    display: flex;
    flex-direction: column;

    padding-right: 35px;
}


.menu-card-number {
    margin-bottom: 5px;

    color: #a6b0bf;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;
}


.menu-title {
    color: #1c2738;

    font-size: 15px;
    font-weight: 750;
}


.menu-description {
    margin-top: 6px;

    color: #8d99aa;

    font-size: 11px;
    line-height: 1.6;
}


.menu-arrow {
    position: absolute;

    right: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 31px;
    height: 31px;

    border-radius: 9px;

    color: #1765d8;

    background: #f0f5fd;

    font-size: 17px;

    transition:
        transform 0.2s ease;
}


.menu-card:hover .menu-arrow {
    transform: translateX(4px);
}


/* =========================================================
   CONTENT SECTION
========================================================= */

.content-section {
    padding-top: 5px;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding:
        0 17px;

    border: 0;

    border-radius: 10px;

    font-size: 12px;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


.btn-primary {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #0b63f6,
            #1556c7
        );

    box-shadow:
        0 8px 18px
        rgba(11, 99, 246, 0.18);
}


.btn-primary:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 24px
        rgba(11, 99, 246, 0.23);
}


.btn-secondary {
    color: #566276;

    border:
        1px solid
        #dfe5ed;

    background: #ffffff;
}


.btn-secondary:hover {
    background: #f5f7fa;
}


/* =========================================================
   DATA CONTAINER
========================================================= */

.data-container {
    width: 100%;

    min-height: 100px;

    padding: 2px;
}


/* =========================================================
   MODAL
========================================================= */

.modal {
    position: fixed;

    inset: 0;

    z-index: 100;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background:
        rgba(18, 28, 43, 0.55);

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}


.modal-box {
    width: min(560px, 100%);
    max-height: calc(100vh - 40px);

    overflow-y: auto;

    border:
        1px solid
        rgba(255, 255, 255, 0.7);

    border-radius: 19px;

    background: #ffffff;

    box-shadow:
        0 30px 70px
        rgba(15, 25, 40, 0.20);

    animation:
        modalIn 0.2s ease;
}


.modal-large {
    width: min(760px, 100%);
}


@keyframes modalIn {

    from {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}


.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;

    padding: 25px 28px;

    border-bottom:
        1px solid
        #edf0f4;
}


.modal-eyebrow {
    display: block;

    margin-bottom: 6px;

    color: #1765d8;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.5px;
}


.modal-header h2 {
    margin-bottom: 5px;

    color: #172033;

    font-size: 20px;
}


.modal-header p {
    color: #8d99aa;

    font-size: 11px;
}


.modal-close {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 34px;
    height: 34px;

    border: 0;
    border-radius: 9px;

    color: #718096;

    background: #f3f5f8;

    font-size: 22px;
    line-height: 1;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


.modal-close:hover {
    color: #d14343;

    background: #fff0f0;
}


/* MODAL FORM */

.modal-box form {
    padding: 27px 28px 28px;
}


.modal-box .form-group {
    margin-bottom: 18px;
}


.modal-box input,
.modal-box textarea {
    width: 100%;

    padding: 12px 13px;

    border:
        1px solid
        #dce2eb;

    border-radius: 10px;

    color: #172033;

    background: #ffffff;

    font-size: 13px;

    resize: vertical;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.modal-box input {
    min-height: 45px;
}


.modal-box textarea {
    line-height: 1.6;
}


.modal-box input:focus,
.modal-box textarea:focus {
    border-color: #4d8df7;

    box-shadow:
        0 0 0 4px
        rgba(11, 99, 246, 0.08);
}


.modal-box small {
    display: block;

    margin-top: 6px;

    color: #9aa5b5;

    font-size: 10px;
}


.form-row {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 16px;
}


.form-actions {
    display: flex;
    justify-content: flex-end;

    gap: 10px;

    margin-top: 25px;
    padding-top: 20px;

    border-top:
        1px solid
        #edf0f4;
}


/* =========================================================
   NOTIFICATION
========================================================= */

.notification {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 200;

    min-width: 280px;
    max-width: 380px;

    padding:
        14px 18px;

    border:
        1px solid
        #dce5f2;

    border-radius: 12px;

    color: #344054;

    background: #ffffff;

    box-shadow:
        0 15px 40px
        rgba(20, 32, 50, 0.15);

    font-size: 12px;
    font-weight: 600;

    animation:
        notificationIn 0.25s ease;
}


@keyframes notificationIn {

    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}


::-webkit-scrollbar-track {
    background: #eef1f5;
}


::-webkit-scrollbar-thumb {
    border-radius: 20px;

    background: #c4ccd8;
}


::-webkit-scrollbar-thumb:hover {
    background: #aab5c4;
}


/* =========================================================
   TABLE / GENERATED DATA
========================================================= */

.data-container table {
    width: 100%;

    border-collapse: separate;
    border-spacing: 0;

    overflow: hidden;

    border:
        1px solid
        #e5eaf1;

    border-radius: 15px;

    background: #ffffff;

    box-shadow:
        0 7px 22px
        rgba(31, 45, 61, 0.04);
}


.data-container th {
    padding: 14px 16px;

    border-bottom:
        1px solid
        #e8edf3;

    color: #7c899c;

    background: #f8fafc;

    font-size: 10px;
    font-weight: 800;

    text-align: left;

    text-transform: uppercase;

    letter-spacing: 0.7px;
}


.data-container td {
    padding: 14px 16px;

    border-bottom:
        1px solid
        #eef1f5;

    color: #4d5a6d;

    font-size: 12px;

    vertical-align: middle;
}


.data-container tr:last-child td {
    border-bottom: 0;
}


.data-container tbody tr {
    transition:
        background 0.15s ease;
}


.data-container tbody tr:hover {
    background: #f8fbff;
}


/* =========================================================
   GENERATED BUTTONS
========================================================= */

.data-container button {
    border: 0;
    border-radius: 8px;

    padding: 7px 10px;

    font-size: 10px;
    font-weight: 700;
}


.data-container .btn-edit {
    color: #1765d8;

    background: #edf4ff;
}


.data-container .btn-edit:hover {
    background: #dceaff;
}


.data-container .btn-delete {
    color: #d14343;

    background: #fff0f0;
}


.data-container .btn-delete:hover {
    background: #ffe1e1;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .app-header {
        padding: 0 20px;
    }

    .header-status {
        display: none;
    }

    .app-main {
        width: min(
            100% - 30px,
            700px
        );

        padding-top: 25px;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-hero {
        min-height: 170px;

        padding: 28px;
    }

    .hero-decoration {
        right: 30px;
        top: 35px;

        font-size: 65px;
    }

}


/* =========================================================
   MOBILE SMALL
========================================================= */

@media (max-width: 600px) {

    .login-box {
        padding: 30px 24px;

        border-radius: 20px;
    }


    .login-box::before {
        left: 24px;
        right: 24px;
    }


    .login-brand {
        margin-bottom: 28px;
    }


    .login-heading h1 {
        font-size: 26px;
    }


    .login-heading p {
        font-size: 13px;
    }


    .app-header {
        min-height: 68px;

        padding:
            0 15px;
    }


    .app-brand-icon {
        width: 38px;
        height: 38px;
    }


    .brand-title {
        font-size: 14px;
    }


    .brand-subtitle {
        font-size: 8px;
    }


    .btn-logout {
        height: 35px;

        padding:
            0 11px;

        font-size: 11px;
    }


    .app-main {
        width: calc(100% - 24px);

        padding:
            20px 0 50px;
    }


    .dashboard-hero {
        min-height: 155px;

        margin-bottom: 18px;

        padding:
            25px 22px;

        border-radius: 16px;
    }


    .dashboard-hero h1 {
        font-size: 27px;
    }


    .dashboard-hero p {
        max-width: 260px;

        font-size: 11px;
    }


    .hero-decoration {
        right: -5px;
        bottom: -5px;
        top: auto;

        font-size: 55px;
    }


    .dashboard-card {
        min-height: 215px;

        padding: 21px;
    }


    .card-content strong {
        font-size: 34px;
    }


    .section-heading {
        align-items: flex-start;
        flex-direction: column;

        gap: 15px;
    }


    .section-heading h1 {
        font-size: 23px;
    }


    .section-heading h2 {
        font-size: 20px;
    }


    .section-heading .btn {
        width: 100%;
    }


    .menu-card {
        min-height: 130px;

        padding: 18px;
    }


    .menu-card-icon {
        width: 46px;
        height: 46px;

        margin-right: 13px;
    }


    .menu-title {
        font-size: 14px;
    }


    .menu-description {
        font-size: 10px;
    }


    .menu-arrow {
        right: 15px;

        width: 28px;
        height: 28px;
    }


    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .modal {
        align-items: flex-end;

        padding: 0;
    }


    .modal-box {
        width: 100%;
        max-height: 92vh;

        border-radius:
            20px 20px 0 0;
    }


    .modal-header {
        padding:
            21px 20px;
    }


    .modal-box form {
        padding:
            22px 20px 25px;
    }


    .form-actions {
        flex-direction: column-reverse;
    }


    .form-actions .btn {
        width: 100%;
    }


    .notification {
        right: 12px;
        left: 12px;

        bottom: 12px;

        min-width: auto;
        max-width: none;
    }


    .data-container {
        overflow-x: auto;
    }


    .data-container table {
        min-width: 650px;
    }

}


/* =========================================================
   VERY SMALL SCREEN
========================================================= */

@media (max-width: 380px) {

    .login-wrapper {
        width:
            calc(100% - 20px);
    }


    .login-box {
        padding:
            27px 20px;
    }


    .login-box::before {
        left: 20px;
        right: 20px;
    }


    .login-brand-mark {
        width: 47px;
        height: 47px;
    }


    .login-logo {
        font-size: 18px;
    }


    .dashboard-card {
        padding: 18px;
    }


    .menu-card {
        padding: 15px;
    }

}

