@font-face {
    font-family: 'Vazir';
    src: url('/fonts/Vazir.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vazir';
    src: url('/fonts/Vazir-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vazir';
    src: url('/fonts/Vazir-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vazir';
    src: url('/fonts/Vazir-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}


/* =========================================================
   VARIABLES
========================================================= */

:root {

    --navy: #1E3A5F;
    --navy-dark: #142B47;
    --navy-light: #2A4D73;

    --teal: #14B8A6;
    --teal-dark: #0E9486;
    --teal-light: #2DD4BF;

    --white: #FFFFFF;
    --bg: #F5F8FA;
    --surface: #FFFFFF;

    --text: #1E293B;
    --muted: #718096;
    --light-text: #94A3B8;

    --border: #E6EDF2;

    --shadow:
        0 10px 30px rgba(30,58,95,.08);

    --shadow-hover:
        0 16px 40px rgba(30,58,95,.14);

    --radius: 16px;

}


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    margin: 0;

    min-height: 100vh;

    font-family:
        'Vazir',
        Tahoma,
        Arial,
        sans-serif;

    color: var(--text);

    background:

        radial-gradient(
            circle at 8% 12%,
            rgba(20,184,166,.045),
            transparent 20%
        ),

        radial-gradient(
            circle at 92% 35%,
            rgba(30,58,95,.045),
            transparent 22%
        ),

        linear-gradient(
            135deg,
            #FFFFFF 0%,
            #F7FAFC 50%,
            #FFFFFF 100%
        );

    position: relative;

    overflow-x: hidden;

}


/* =========================================================
   PHOTOGRAPHY BACKGROUND
========================================================= */

body::before {

    content: '';

    position: fixed;

    inset: 0;

    z-index: -2;

    pointer-events: none;

    background-image:

        linear-gradient(
            rgba(30,58,95,.025) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(30,58,95,.025) 1px,
            transparent 1px
        );

    background-size:
        55px 55px;

}


/* aperture background */

body::after {

    content: '';

    position: fixed;

    width: 550px;
    height: 550px;

    left: -270px;
    bottom: -300px;

    border-radius: 50%;

    border:
        1px solid rgba(20,184,166,.07);

    box-shadow:

        0 0 0 45px rgba(20,184,166,.018),
        0 0 0 90px rgba(20,184,166,.014),
        0 0 0 135px rgba(20,184,166,.010),
        0 0 0 180px rgba(20,184,166,.007);

    z-index: -1;

    pointer-events: none;

}


/* =========================================================
   LINKS
========================================================= */

a {

    color: inherit;

    text-decoration: none;

}


/* =========================================================
   HEADER
========================================================= */

.v-header {

    position: sticky;

    top: 14px;

    z-index: 100;

    width:
        min(
            1240px,
            calc(100% - 32px)
        );

    min-height: 68px;

    margin:
        14px auto 0;

    padding:
        8px 12px;

    display: flex;

    align-items: center;

    gap: 18px;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--navy),
            var(--navy-dark)
        );

    border-radius:
        17px;

    box-shadow:
        0 12px 32px rgba(30,58,95,.18);

}


/* =========================================================
   BRAND
========================================================= */

.v-brand > a {

    display: flex;

    align-items: center;

    gap: 10px;

}

.v-logo,
.v-logo-fallback {

    width: 44px;
    height: 44px;

    border-radius: 11px;

}

.v-logo {

    object-fit: contain;

}

.v-logo-fallback {

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    background:
        var(--teal);

    font-size: 20px;

    font-weight: 700;

}

.v-brand-title {

    color: white;

    font-size: 13px;

    font-weight: 700;

}

.v-brand-sub {

    color:
        rgba(255,255,255,.55);

    font-size: 9px;

    margin-top: 2px;

}


/* =========================================================
   NAV
========================================================= */

.v-nav {

    display: flex;

    align-items: center;

    gap: 3px;

    margin:
        0 auto;

}

.v-nav a {

    padding:
        8px 12px;

    color:
        rgba(255,255,255,.68);

    border-radius: 8px;

    font-size: 11px;

    transition: .2s ease;

}

.v-nav a:hover {

    color: white;

    background:
        rgba(255,255,255,.07);

}

.v-nav a.active {

    color: white;

    background:
        rgba(20,184,166,.18);

}


/* =========================================================
   BUTTONS
========================================================= */

.v-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    padding:
        9px 14px;

    border: none;

    border-radius: 9px;

    font-family: inherit;

    font-size: 11px;

    font-weight: 500;

    cursor: pointer;

    transition: .2s ease;

}

.v-btn:hover {

    transform:
        translateY(-1px);

}

.v-btn-primary {

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--teal),
            var(--teal-dark)
        );

    box-shadow:
        0 7px 18px rgba(20,184,166,.20);

}

.v-btn-secondary {

    color:
        var(--navy);

    background:
        rgba(20,184,166,.08);

    border:
        1px solid rgba(20,184,166,.17);

}

.v-btn-secondary:hover {

    color:
        var(--teal-dark);

    background:
        rgba(20,184,166,.13);

}

.v-btn-ghost {

    color:
        rgba(255,255,255,.82);

    background:
        rgba(255,255,255,.07);

    border:
        1px solid rgba(255,255,255,.08);

}

.v-btn-sm {

    padding:
        7px 11px;

    font-size: 10px;

}

.v-btn-lg {

    min-height: 48px;

    padding:
        0 25px;

    font-size: 12px;

}

.v-btn-block {
    width: 100%;
}


/* =========================================================
   PAGE
========================================================= */

.v-page {

    width:
        min(
            1160px,
            calc(100% - 32px)
        );

    margin:
        0 auto;

    padding:
        38px 0 45px;

}


/* =========================================================
   TITLES
========================================================= */

.page-eyebrow {

    display: inline-flex;

    color:
        var(--teal-dark);

    font-size: 10px;

    font-weight: 700;

    margin-bottom: 6px;

}

.v-page-title {

    margin: 0;

    color:
        var(--navy);

    font-size: 27px;

    font-weight: 700;

    letter-spacing:
        -.5px;

}

.v-page-subtitle {

    margin:
        4px 0 25px;

    color:
        var(--muted);

    font-size: 11px;

}


/* =========================================================
   DASHBOARD
========================================================= */

.dashboard-heading {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 15px;

    margin-bottom: 20px;

}

.dashboard-date {

    padding:
        8px 12px;

    color:
        var(--navy);

    background:
        white;

    border:
        1px solid var(--border);

    border-radius: 9px;

    font-size: 10px;

    direction: ltr;

}


/* =========================================================
   STATS
========================================================= */

.v-stats {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 12px;

    margin-bottom: 17px;

}

.v-stat {

    position: relative;

    overflow: hidden;

    min-height: 130px;

    padding: 18px;

    background:
        white;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

    box-shadow:
        var(--shadow);

    transition: .25s ease;

}

.v-stat:hover {

    transform:
        translateY(-3px);

    box-shadow:
        var(--shadow-hover);

}

.v-stat::after {

    content: '';

    position: absolute;

    width: 100px;
    height: 100px;

    left: -35px;
    bottom: -50px;

    border-radius: 50%;

    border:
        10px solid rgba(20,184,166,.035);

}

.v-stat-icon {

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 10px;

    border-radius: 10px;

    color:
        var(--teal);

    background:
        rgba(20,184,166,.09);

}

.v-stat-icon svg {

    width: 19px;
    height: 19px;

}

.stat-blue .v-stat-icon {

    color:
        #3B82F6;

    background:
        rgba(59,130,246,.08);

}

.stat-navy .v-stat-icon {

    color:
        var(--navy);

    background:
        rgba(30,58,95,.08);

}

.stat-purple .v-stat-icon {

    color:
        #8B5CF6;

    background:
        rgba(139,92,246,.08);

}

.v-stat-label {

    color:
        var(--muted);

    font-size: 10px;

}

.v-stat-value {

    margin-top: 1px;

    color:
        var(--navy);

    font-size: 25px;

    font-weight: 700;

}


/* =========================================================
   QUICK ACTIONS
========================================================= */

.quick-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 12px;

    margin-bottom: 25px;

}

.quick-card {

    display: flex;

    align-items: center;

    gap: 11px;

    padding:
        14px 15px;

    background:
        white;

    border:
        1px solid var(--border);

    border-radius:
        13px;

    box-shadow:
        0 7px 20px rgba(30,58,95,.05);

    transition: .2s ease;

}

.quick-card:hover {

    transform:
        translateY(-2px);

    border-color:
        rgba(20,184,166,.25);

    box-shadow:
        var(--shadow);

}

.quick-icon {

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 11px;

    color:
        var(--teal);

    background:
        rgba(20,184,166,.09);

    font-size: 18px;

}

.quick-card div:nth-child(2) {

    flex: 1;

}

.quick-card strong {

    display: block;

    color:
        var(--navy);

    font-size: 11px;

}

.quick-card span {

    display: block;

    margin-top: 2px;

    color:
        var(--muted);

    font-size: 9px;

}

.quick-card b {

    color:
        var(--teal);

    font-size: 16px;

}


/* =========================================================
   SECTIONS
========================================================= */

.dashboard-section {

    background:
        white;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

    box-shadow:
        var(--shadow);

    overflow: hidden;

}

.section-heading {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    margin-bottom: 17px;

}

.section-heading h2 {

    margin: 0;

    color:
        var(--navy);

    font-size: 14px;

}

.section-heading p {

    margin:
        3px 0 0;

    color:
        var(--muted);

    font-size: 9.5px;

}


/* =========================================================
   RECENT
========================================================= */

.dashboard-section > .section-heading {

    padding:
        18px 20px 0;

}

.recent-row {

    display: flex;

    align-items: center;

    gap: 11px;

    padding:
        12px 20px;

    border-top:
        1px solid #F0F3F5;

}

.recent-photo-icon {

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background:
        #F1F8F7;

}

.recent-main {

    flex: 1;

    min-width: 0;

}

.recent-main strong {

    display: block;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;

    color:
        var(--navy);

    font-size: 10.5px;

}

.recent-main span {

    display: block;

    margin-top: 2px;

    color:
        var(--muted);

    font-size: 9px;

}

.recent-photographer {

    min-width: 130px;

}

.recent-photographer span {

    display: block;

    color:
        var(--light-text);

    font-size: 8px;

}

.recent-photographer strong {

    color:
        var(--teal-dark);

    font-size: 9.5px;

}

.recent-date {

    color:
        var(--muted);

    font-size: 8.5px;

    direction: ltr;

}


/* =========================================================
   CARDS
========================================================= */

.v-card {

    position: relative;

    margin-bottom: 16px;

    padding: 22px;

    background:
        white;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

    box-shadow:
        var(--shadow);

}


/* =========================================================
   FORM
========================================================= */

.v-form-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 14px;

}

.v-form-group {
    margin-bottom: 13px;
}

.v-label {

    display: block;

    margin-bottom: 6px;

    color:
        var(--navy);

    font-size: 10.5px;

    font-weight: 600;

}

.v-input {

    width: 100%;

    height: 42px;

    padding:
        0 12px;

    border:
        1px solid #DDE6EC;

    border-radius: 9px;

    outline: none;

    background:
        #FAFCFD;

    color:
        var(--text);

    font-family: inherit;

    font-size: 11px;

    transition: .2s ease;

}

.v-input:focus {

    background:
        white;

    border-color:
        var(--teal);

    box-shadow:
        0 0 0 3px rgba(20,184,166,.08);

}

.v-input::placeholder {

    color:
        #AAB7C4;

}


/* =========================================================
   ALERT
========================================================= */

.v-alert {

    padding:
        11px 14px;

    margin-bottom: 15px;

    border-radius: 9px;

    font-size: 10.5px;

}

.v-alert-danger {

    color:
        #B42318;

    background:
        #FEF3F2;

    border:
        1px solid #FECACA;

}

.v-alert-warning {

    color:
        #9A6700;

    background:
        #FFF8E6;

    border:
        1px solid #F4D58D;

}

.v-alert-success {

    color:
        #087F6A;

    background:
        #ECFDF8;

    border:
        1px solid #A7F3D0;

}


/* =========================================================
   PHOTOGRAPHER SELECT
========================================================= */

.photographer-card {

    overflow: hidden;

}

.photographer-grid {

    display: grid;

    grid-template-columns:
        repeat(
            auto-fill,
            minmax(155px, 1fr)
        );

    gap: 10px;

}

.photographer-option {

    position: relative;

    display: flex;

    align-items: center;

    gap: 9px;

    min-height: 55px;

    padding:
        9px 11px;

    border:
        1px solid var(--border);

    border-radius: 11px;

    background:
        #FAFCFD;

    cursor: pointer;

    transition: .2s ease;

}

.photographer-option:hover {

    border-color:
        rgba(20,184,166,.35);

    background:
        #F6FFFD;

}

.photographer-option input {

    position: absolute;

    opacity: 0;

}

.photographer-option:has(input:checked) {

    border-color:
        var(--teal);

    background:
        rgba(20,184,166,.055);

    box-shadow:
        0 5px 15px rgba(20,184,166,.08);

}

.photographer-avatar {

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 9px;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--navy),
            var(--teal)
        );

    font-size: 13px;

    font-weight: 700;

}

.photographer-name {

    flex: 1;

    color:
        var(--navy);

    font-size: 10.5px;

    font-weight: 600;

}

.photographer-check {

    width: 19px;
    height: 19px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: white;

    background:
        var(--teal);

    font-size: 10px;

    opacity: 0;

}

.photographer-option:has(input:checked)
.photographer-check {

    opacity: 1;

}

.required-label {

    color:
        #D92D20;

    font-size: 9px;

}

.step-badge {

    padding:
        5px 9px;

    color:
        var(--teal-dark);

    background:
        rgba(20,184,166,.08);

    border-radius: 7px;

    font-size: 9px;

}

.upload-submit {

    width: 100%;

    margin-top: 2px;

}


/* =========================================================
   UPLOAD ZONE
========================================================= */

.v-upload-zone {

    position: relative;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    min-height: 205px;

    padding: 30px;

    text-align: center;

    border:
        2px dashed #D9E5EA;

    border-radius: 14px;

    background:

        radial-gradient(
            circle at center,
            rgba(20,184,166,.045),
            transparent 48%
        ),

        #FCFEFE;

    cursor: pointer;

    transition: .25s ease;

}

.v-upload-zone:hover {

    border-color:
        rgba(20,184,166,.5);

    background:
        #F8FFFD;

}

.v-upload-zone input {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;

    cursor: pointer;

}

.v-upload-icon {

    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 10px;

    border-radius: 15px;

    background:
        rgba(20,184,166,.08);

    color:
        var(--teal);

    font-size: 24px;

}

.v-upload-title {

    color:
        var(--navy);

    font-size: 12px;

    font-weight: 700;

}

.v-upload-hint {

    margin-top: 4px;

    color:
        var(--muted);

    font-size: 9px;

    line-height: 1.8;

}

.v-file-count {

    margin-top: 9px;

    color:
        var(--teal-dark);

    font-size: 9.5px;

    font-weight: 600;

}


/* =========================================================
   TABLE
========================================================= */

.report-table-wrap {

    overflow-x: auto;

}

.v-table {

    width: 100%;

    border-collapse: collapse;

    font-size: 10px;

}

.v-table th {

    padding:
        12px 13px;

    color:
        var(--muted);

    background:
        #F8FAFC;

    border-bottom:
        1px solid var(--border);

    text-align: right;

    font-size: 9px;

    font-weight: 600;

    white-space: nowrap;

}

.v-table td {

    padding:
        12px 13px;

    border-bottom:
        1px solid #EEF2F5;

    color:
        #526173;

    white-space: nowrap;

}

.v-table tr:last-child td {
    border-bottom: none;
}

.v-table tr:hover td {

    background:
        #FAFEFD;

}

.customer-name {

    color:
        var(--navy);

    font-size: 10.5px;

}

.gallery-code {

    display: inline-block;

    padding:
        4px 7px;

    color:
        var(--teal-dark);

    background:
        rgba(20,184,166,.07);

    border-radius: 6px;

    font-size: 9px;

}

.count-badge {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 26px;

    padding:
        4px 7px;

    color:
        var(--navy);

    background:
        #EFF4F8;

    border-radius: 6px;

    font-size: 9px;

}

.report-file {

    display: flex;

    align-items: center;

    gap: 7px;

}

.report-file span {

    width: 27px;
    height: 27px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 7px;

    background:
        #F0F9F7;

}

.report-file strong {

    max-width: 180px;

    overflow: hidden;

    text-overflow: ellipsis;

    color:
        var(--navy);

    font-size: 9.5px;

}

.photographer-tag {

    display: inline-block;

    padding:
        4px 8px;

    color:
        var(--teal-dark);

    background:
        rgba(20,184,166,.07);

    border-radius: 6px;

    font-size: 9px;

}

.report-empty {

    text-align: center;

    padding:
        45px !important;

    color:
        var(--muted) !important;

}


/* =========================================================
   REPORT
========================================================= */

.period-tabs {

    display: inline-flex;

    gap: 4px;

    padding: 4px;

    margin-bottom: 22px;

    background:
        #EEF3F6;

    border-radius: 10px;

}

.period-tabs a {

    padding:
        8px 18px;

    color:
        var(--muted);

    border-radius: 7px;

    font-size: 10px;

    transition: .2s ease;

}

.period-tabs a.active {

    color:
        white;

    background:
        var(--navy);

    box-shadow:
        0 5px 12px rgba(30,58,95,.15);

}

.report-title-row {

    margin-bottom: 12px;

}

.report-title-row h2 {

    margin: 0;

    color:
        var(--navy);

    font-size: 15px;

}

.report-title-row span {

    color:
        var(--muted);

    font-size: 9px;

}

.report-stats {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;

    margin-bottom: 15px;

}

.report-stat {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding:
        14px 17px;

    background:
        white;

    border:
        1px solid var(--border);

    border-radius:
        12px;

    box-shadow:
        0 6px 18px rgba(30,58,95,.045);

}

.report-stat span {

    color:
        var(--muted);

    font-size: 10px;

}

.report-stat strong {

    color:
        var(--navy);

    font-size: 20px;

}

.report-card {

    padding: 0;

    overflow: hidden;

}


/* =========================================================
   SEARCH
========================================================= */

.customers-heading {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 22px;

}

.customer-search {

    display: flex;

    width: 360px;

}

.customer-search input {

    flex: 1;

    height: 40px;

    padding:
        0 12px;

    border:
        1px solid var(--border);

    border-left: none;

    border-radius:
        9px 0 0 9px;

    outline: none;

    font-family: inherit;

    font-size: 10px;

}

.customer-search input:focus {

    border-color:
        var(--teal);

}

.customer-search button {

    padding:
        0 15px;

    color: white;

    background:
        var(--navy);

    border: none;

    border-radius:
        0 9px 9px 0;

    font-family: inherit;

    font-size: 10px;

    cursor: pointer;

}

.customer-table-card {

    padding: 0;

    overflow: hidden;

}


/* =========================================================
   PAGINATION
========================================================= */

.pagination {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    padding: 16px;

    border-top:
        1px solid var(--border);

}

.pagination a,
.pagination span {

    padding:
        6px 10px;

    border-radius: 7px;

    font-size: 9px;

}

.pagination a {

    color:
        var(--navy);

    background:
        #F1F5F8;

}

.pagination .current {

    color:
        white;

    background:
        var(--teal);

}

.pagination .disabled {

    color:
        #AAB4BE;

    background:
        #F6F7F8;

}


/* =========================================================
   SETTINGS
========================================================= */

.settings-grid {

    display: grid;

    grid-template-columns:
        350px 1fr;

    gap: 16px;

}

.settings-icon {

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 9px;

    color:
        white;

    background:
        var(--teal);

    font-size: 18px;

}

.photographer-list {

    display: flex;

    flex-direction: column;

    gap: 8px;

}

.photographer-list-row {

    display: flex;

    align-items: center;

    gap: 10px;

    padding:
        9px 10px;

    background:
        #FAFCFD;

    border:
        1px solid #EDF1F4;

    border-radius: 10px;

}

.photographer-list-info {

    flex: 1;

}

.photographer-list-info strong {

    display: block;

    color:
        var(--navy);

    font-size: 10.5px;

}

.photographer-list-info span {

    display: block;

    margin-top: 2px;

    color:
        var(--muted);

    font-size: 8.5px;

}

.icon-danger {

    width: 28px;
    height: 28px;

    display: flex;

    align-items: center;
    justify-content: center;

    color:
        #D92D20;

    background:
        #FEF3F2;

    border:
        1px solid #FEE4E2;

    border-radius: 7px;

    cursor: pointer;

    font-size: 18px;

}


/* =========================================================
   EMPTY
========================================================= */

.empty-mini {

    padding:
        35px 15px;

    text-align: center;

    color:
        var(--muted);

    font-size: 10px;

}


/* =========================================================
   FOOTER
========================================================= */

.v-footer {

    padding:
        15px;

    text-align: center;

    color:
        #A1ACB8;

    font-size: 9px;

}

.v-footer strong {

    color:
        var(--teal-dark);

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width: 950px) {

    .v-stats {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .quick-grid {

        grid-template-columns:
            1fr;

    }

    .settings-grid {

        grid-template-columns:
            1fr;

    }

    .v-nav {

        overflow-x: auto;

    }

}


@media(max-width: 750px) {

    .v-header {

        flex-wrap: wrap;

    }

    .v-nav {

        order: 3;

        width: 100%;

        justify-content:
            center;

    }

    .v-header-actions {

        margin-right: auto;

    }

    .v-form-grid {

        grid-template-columns:
            1fr;

    }

    .customers-heading {

        align-items:
            stretch;

        flex-direction: column;

    }

    .customer-search {

        width: 100%;

    }

    .report-stats {

        grid-template-columns:
            1fr;

    }

    .recent-photographer {

        display: none;

    }

}


@media(max-width: 520px) {

    .v-header {

        top: 7px;

        width:
            calc(100% - 14px);

        margin-top: 7px;

    }

    .v-page {

        width:
            calc(100% - 18px);

        padding-top:
            28px;

    }

    .v-brand-sub {

        display: none;

    }

    .v-brand-title {

        font-size: 11px;

    }

    .v-nav {

        justify-content:
            flex-start;

    }

    .v-nav a {

        padding:
            7px 9px;

        font-size: 9.5px;

    }

    .v-stats {

        grid-template-columns:
            1fr 1fr;

    }

    .v-stat {

        min-height:
            115px;

        padding:
            14px;

    }

    .v-stat-value {

        font-size:
            22px;

    }

    .dashboard-heading {

        align-items:
            flex-start;

        flex-direction:
            column;

    }

    .photographer-grid {

        grid-template-columns:
            1fr;

    }

    .period-tabs {

        width: 100%;

    }

    .period-tabs a {

        flex: 1;

        text-align: center;

        padding:
            8px 5px;

    }

    .v-table {

        min-width:
            700px;

    }

}


.photo-photographer {
    margin-top: 3px;
    color: #14B8A6;
    font-size: 8.5px;
    font-weight: 500;
}



/* =========================================================
   VIVAN V3 - UPLOAD STABILITY FIX
   ========================================================= */

.upload-main-card,
.photographer-card,
.v-upload-zone,
.photographer-option,
.v-input {
    box-sizing: border-box;
}


/* Keep upload controls at stable dimensions */

.v-input {
    height: 42px;
    min-height: 42px;
}


.v-upload-zone {
    min-height: 205px;
}


.photographer-option {
    min-height: 55px;
}


/*
|--------------------------------------------------------------------------
| Prevent images from affecting layout
|--------------------------------------------------------------------------
*/

.v-logo {
    width: auto;
    height: 34px;
    max-width: 160px;
    object-fit: contain;
    display: block;
}


img {
    height: auto;
}


/*
|--------------------------------------------------------------------------
| Upload responsive stabilization
|--------------------------------------------------------------------------
*/

@media (max-width: 750px) {

    .v-form-grid {
        grid-template-columns: 1fr;
    }

    .photographer-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 520px) {

    .v-header {
        width: calc(100% - 14px);
    }

    .v-page {
        width: calc(100% - 18px);
    }

    .v-input {
        height: 42px;
        min-height: 42px;
    }

    .v-upload-zone {
        min-height: 190px;
        padding: 25px 18px;
    }

}
