/* ============================================================
   UNIFORM DISTRIBUTION SYSTEM — Modern Professional Theme
   Palette: Deep Navy + Slate + Cool White + Accent Gold
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700&family=Barlow+Condensed:wght@400;600;700&display=swap');

:root {
    --navy-900: #0a1628;
    --navy-800: #0f2044;
    --navy-700: #1a3260;
    --navy-600: #1e3d7a;
    --navy-500: #2251a3;
    --slate-100: #f0f4f8;
    --slate-200: #dde4ed;
    --slate-300: #b8c5d4;
    --slate-400: #8a9ab0;
    --slate-600: #4a5e78;
    --slate-800: #1e2d40;
    --gold: #c8a84b;
    --gold-light: #e2c97a;
    --white: #ffffff;
    --danger: #c0392b;
    --success: #1a7f5a;
    --text-primary: #1e2d40;
    --text-secondary: #4a5e78;
    --text-muted: #8a9ab0;
    --border: #dde4ed;
    --shadow-sm: 0 1px 3px rgba(10,22,40,0.08), 0 1px 2px rgba(10,22,40,0.06);
    --shadow-md: 0 4px 12px rgba(10,22,40,0.10), 0 2px 6px rgba(10,22,40,0.08);
    --shadow-lg: 0 10px 30px rgba(10,22,40,0.15), 0 4px 12px rgba(10,22,40,0.10);
    --radius: 8px;
    --radius-lg: 12px;
    --header-height: 68px;
    --sidebar-width: 220px;
    --font-main: 'Barlow', 'Segoe UI', sans-serif;
    --font-display: 'Barlow Condensed', 'Futura XBlkCn BT', Verdana, sans-serif;
}

/* ─── RESET & BASE ─────────────────────────────────────── */

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    background-color: var(--slate-100);
    background-image: radial-gradient(ellipse at 80% 0%, rgba(34,81,163,0.06) 0%, transparent 60%), radial-gradient(ellipse at 0% 100%, rgba(10,22,40,0.04) 0%, transparent 50%);
    margin: 0;
    font-family: var(--font-main);
    font-size: 14px;
    color: var(--text-primary);
    min-height: 100vh;
}

a {
    color: var(--navy-500);
    text-decoration: none;
    transition: color 0.2s;
}

    a:hover {
        color: var(--navy-700);
    }

h2, h4 {
    margin-top: 0;
    font-family: var(--font-display);
    letter-spacing: 0.02em;
}

/* ─── HEADER / NAVIGATION ──────────────────────────────── */

.main-navigation {
    height: var(--header-height);
    background: var(--navy-900);
    background-image: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
    border-bottom: 2px solid var(--gold);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(10,22,40,0.35);
    padding: 0 24px;
    display: flex;
    align-items: center;
}

.header-logo {
    position: absolute;
    left: 24px;
    height: calc(var(--header-height) - -4px);
    display: flex;
    align-items: center;
}


.header-app-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-left: 12px;
}

    .header-app-title span {
        color: var(--gold);
    }

/* Navbar collapse */
.menu_1 {
    position: absolute;
    right: 24px;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

    .menu_1 ul.navbar-nav {
        flex-direction: row;
        align-items: center;
        gap: 4px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .menu_1 li {
        padding: 0;
    }

        .menu_1 li > a,
        .menu_1 li > a > span,
        .menu_1 li > a > span > span {
            display: inline-block !important;
            height: auto !important;
            color: var(--slate-300) !important;
            font-family: var(--font-display) !important;
            font-weight: 600 !important;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            text-decoration: none;
            padding: 8px 16px;
            border-radius: var(--radius);
            transition: background 0.2s, color 0.2s;
        }

            .menu_1 li > a:hover,
            .menu_1 li > a:hover > span,
            .menu_1 li > a:hover > span > span {
                background: #3f6ea8 !important;
                color: #fff !important;
            }

        .menu_1 li:last-child > a {
            border: 1px solid rgba(200, 168, 75, 0.3);
        }

.navbar-toggler {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
    padding: 6px 10px;
    background: transparent;
    z-index: 2;
}

    .navbar-toggler:focus {
        outline: none;
        box-shadow: none;
    }

/* ─── MAIN LAYOUT ──────────────────────────────────────── */

.page-wrapper {
    display: flex;
    min-height: calc(100vh - var(--header-height));
}

.form {
    background: transparent;
    box-shadow: none;
    margin: 0;
    padding: 0;
    min-width: 0;
    max-width: 100%;
    border-radius: 0;
    width: 100%;
}

#wrapper {
    display: flex;
    width: 100%;
    min-height: calc(100vh - var(--header-height) - 2px);
    align-items: stretch;
}

/* ─── SIDEBAR ───────────────────────────────────────────── */

#sidebar-wrapper {
    width: var(--sidebar-width);
    min-width: var(--sidebar-width);
    background: var(--white);
    border-right: 1px solid var(--border);
    box-shadow: 2px 0 8px rgba(10,22,40,0.04);
    padding: 20px 0;
    flex-shrink: 0;
}

    #sidebar-wrapper .list-group {
        padding: 0 12px;
    }

    #sidebar-wrapper .list-group-item {
        border: none;
        border-radius: var(--radius);
        padding: 10px 14px;
        margin-bottom: 2px;
        color: var(--text-secondary);
        font-size: 14px;
        font-weight: 500;
        font-family: var(--font-main);
        letter-spacing: 0.01em;
        background: transparent;
        transition: background 0.15s, color 0.15s, transform 0.15s;
        display: flex;
        align-items: center;
        gap: 8px;
        position: relative;
    }

        #sidebar-wrapper .list-group-item::before {
            content: '';
            width: 3px;
            height: 0;
            background: #3f6ea8 !important;
            border-radius: 2px;
            position: absolute;
            left: 4px;
            top: 50%;
            transform: translateY(-50%);
            transition: height 0.2s;
        }

        #sidebar-wrapper .list-group-item:hover {
            background: var(--slate-100);
            color: var(--navy-700);
            transform: translateX(2px);
        }

            #sidebar-wrapper .list-group-item:hover::before {
                height: 60%;
            }

        #sidebar-wrapper .list-group-item.active,
        .list-group-item.active {
            background: var(--navy-800) !important;
            border-color: transparent !important;
            color: var(--white) !important;
            font-weight: 600;
            box-shadow: var(--shadow-sm);
        }

            #sidebar-wrapper .list-group-item.active::before {
                background: #3f6ea8 !important;
                height: 60%;
            }

.sidebar-label {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0e1d37;
    padding: 16px 18px 6px;
    font-family: var(--font-display);
}

/* ─── PAGE CONTENT ─────────────────────────────────────── */

#page-content-wrapper {
    flex: 1;
    padding: 24px;
    overflow: auto;
}

.page-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.page-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy-900);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 4px;
}

.page-subtitle {
    font-size: 13px;
    color: #525a65;
    margin: 0;
}

/* ─── CARD / PANEL CONTAINERS ──────────────────────────── */

.card-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    padding: 20px;
    margin-bottom: 16px;
}

.card-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--slate-200);
}

.card-panel-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--navy-700);
}

/* ─── BUTTONS ───────────────────────────────────────────── */

button,
input[type=button],
input[type=submit],
.btn-primary {
    background: var(--navy-800);
    background-image: linear-gradient(135deg, var(--navy-700), var(--navy-900));
    border: 1px solid var(--navy-700);
    color: var(--white);
    cursor: pointer;
    font-weight: 600;
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0;
    padding: 10px 20px;
    border-radius: var(--radius);
    transition: all 0.2s;
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

    button:hover,
    input[type=button]:hover,
    .btn-primary:hover {
        background-image: linear-gradient(135deg, var(--navy-600), var(--navy-800));
        box-shadow: var(--shadow-md);
        transform: translateY(-1px);
        opacity: 1;
    }

    button:active,
    input[type=button]:active {
        transform: translateY(0);
        box-shadow: var(--shadow-sm);
    }

.btn-gold {
    background: linear-gradient(135deg, var(--gold), #a8882e);
    border-color: #3f6ea8 !important;
    color: var(--navy-900);
}

    .btn-gold:hover {
        border-color: #3f6ea8 !important;
        background: linear-gradient(135deg, #3f6ea8, #2c568c);
        color: var(--navy-900);
    }

/* ─── FORM INPUTS ───────────────────────────────────────── */

input[type=text],
input[type=password],
select,
textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-main);
    font-size: 14px;
    color: var(--text-primary);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

    input[type=text]:focus,
    input[type=password]:focus,
    select:focus {
        border-color: var(--navy-500);
        box-shadow: 0 0 0 3px rgba(34,81,163,0.12);
    }

.dxeTextBox_Office365,
.dxeButtonEdit_Office365 {
    border: 1.5px solid var(--border) !important;
    border-radius: var(--radius) !important;
    background: var(--white) !important;
    transition: border-color 0.2s, box-shadow 0.2s !important;
}

    .dxeTextBox_Office365.dxeFocused,
    .dxeButtonEdit_Office365.dxeFocused {
        border-color: var(--navy-500) !important;
        box-shadow: 0 0 0 3px rgba(34,81,163,0.12) !important;
    }

.tbox1, .tbox2 {
    width: 100%;
    margin: 0;
    border-radius: var(--radius);
    padding: 0;
}

/* ─── DEVEXPRESS GRID OVERRIDES ─────────────────────────── */

.dxgv {
    border: 1px solid var(--border) !important;
    overflow: hidden !important;
    font-family: var(--font-main) !important;
    font-size: 13px !important;
    width: 100%;
    padding-right: 30px;
}

.dxgvHICR_Office365,
.dxgvHRC_Office365 {
    background: var(--navy-900) !important;
    color: var(--white) !important;
    font-family: var(--font-display) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    border-color: var(--navy-800) !important;
    padding: 12px 10px !important;
}

.dxgvDataRow_Office365 td,
.dxgvDR_Office365 td {
    padding: 10px !important;
    border-color: var(--slate-200) !important;
    color: var(--text-primary) !important;
}

.dxgvDataRow_Office365:hover td,
.dxgvDR_Office365:hover td {
    background: var(--slate-100) !important;
}

.dxgvAltRow_Office365 td {
    background: rgba(240, 244, 248, 0.5) !important;
}

.dxgvAltRow_Office365:hover td {
    background: var(--slate-100) !important;
}

/* ─── LOGIN PAGE ────────────────────────────────────────── */

body.login-page {
    background: var(--navy-900);
    background-image: radial-gradient(ellipse at 30% 20%, rgba(34,81,163,0.4) 0%, transparent 55%), radial-gradient(ellipse at 70% 80%, rgba(10,22,40,0.8) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.login-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.login {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 380px;
    max-width: 95vw;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.login-header {
    background: var(--navy-900);
    background-image: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    padding: 32px 28px 24px;
    text-align: center;
    position: relative;
}

    .login-header::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

.login-app-name {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.login-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.04em;
    margin: 0;
}

.login-body {
    padding: 28px;
}

.login-field {
    margin-bottom: 16px;
}

    .login-field label {
        display: block;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--text-secondary);
        margin-bottom: 6px;
        font-family: var(--font-display);
    }

.login-button {
    margin-top: 8px;
    margin-bottom: 0;
    padding: 0;
    width: 100%;
}

    .login-button .dxbButton_Office365,
    .login-button table {
        width: 100% !important;
    }

.login-btn-override {
    width: 100%;
    padding: 12px;
    font-size: 13px;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
    border: none;
    border-radius: var(--radius);
    color: white;
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 8px;
    transition: all 0.2s;
    box-shadow: var(--shadow-md);
}

    .login-btn-override:hover {
        transform: translateY(-1px);
        box-shadow: var(--shadow-lg);
    }

.login-error {
    background: rgba(192, 57, 43, 0.08);
    border: 1px solid rgba(192, 57, 43, 0.2);
    border-radius: var(--radius);
    color: var(--danger) !important;
    padding: 10px 14px;
    font-size: 13px;
    margin-bottom: 16px;
    display: block;
}

/* ─── SEARCH BAR AREA ──────────────────────────────────── */

.search-area {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.search-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    font-family: var(--font-display);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.dxchkToggle_Office365 .dxchkSwitchSlider {
    background: var(--slate-300) !important;
}

.dxchkToggle_Office365 .dxchkChecked .dxchkSwitchSlider {
    background: var(--navy-600) !important;
}

/* ─── ATHLETE INFO CARD ─────────────────────────────────── */

.athlete-card {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    border-radius: var(--radius-lg);
    padding: 20px;
    color: var(--white);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

    .athlete-card::before {
        content: '';
        position: absolute;
        top: -20px;
        right: -20px;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: rgba(200, 168, 75, 0.1);
        border: 2px solid rgba(200, 168, 75, 0.2);
    }

.athlete-badge-number {
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.athlete-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin: 0 0 8px;
}

.athlete-meta {
    font-size: 12px;
    color: var(--slate-300);
    line-height: 1.5;
}

/* ─── STATUS BADGES ─────────────────────────────────────── */

.badge-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    font-family: var(--font-display);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.badge-pending {
    background: rgba(200, 168, 75, 0.12);
    color: #9e7b1a;
    border: 1px solid rgba(200, 168, 75, 0.3);
}

.badge-delivered {
    background: rgba(26, 127, 90, 0.10);
    color: var(--success);
    border: 1px solid rgba(26, 127, 90, 0.2);
}

.badge-partial {
    background: rgba(34, 81, 163, 0.10);
    color: var(--navy-500);
    border: 1px solid rgba(34, 81, 163, 0.2);
}

/* ─── DEVEXPRESS BUTTON OVERRIDE ─────────────────────────── */

.dxbButton_Office365 {
    background: linear-gradient(135deg, var(--navy-700), var(--navy-900)) !important;
    border: 1px solid var(--navy-600) !important;
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow-sm) !important;
}

    .dxbButton_Office365 .dxbf {
        background: transparent !important;
        border: none !important;
    }

    .dxbButton_Office365 .dxbl {
        color: var(--white) !important;
        font-family: var(--font-display) !important;
        font-size: 12px !important;
        font-weight: 700 !important;
        letter-spacing: 0.06em !important;
        text-transform: uppercase !important;
        padding: 9px 18px !important;
    }


.delivery-section .dxb {
    background-color: #0f2044 !important;
    color: white !important;
    border: 2px solid #004080 !important;
    border-radius: 6px;
    padding: 6px 14px !important;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

    .delivery-section .dxb:hover {
        background-color: #004080 !important;
        border-color: #00264d !important;
        cursor: pointer;
    }

.export-section .dxb {
    background-color: #0f2044 !important;
    color: white !important;
    border: 2px solid #004080 !important;
    border-radius: 6px;
    padding: 6px 14px !important;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

    .export-section .dxb:hover {
        background-color: #004080 !important;
        border-color: #00264d !important;
        cursor: pointer;
    }

.dxbTSys {
    margin-bottom: 5px;
}

/* ─── COMBOBOX OVERRIDE ─────────────────────────────────── */
.dxeComboBox_Office365 .dxeEditArea {
    border: 1.5px solid var(--border) !important;
    border-radius: var(--radius) !important;
    background: var(--white) !important;
    font-size: 14px !important;
    font-family: var(--font-main) !important;
}

/* ─── POPUP OVERRIDE ────────────────────────────────────── */

.dxpLW_Office365 {
    border-radius: var(--radius-lg) !important;
    box-shadow: var(--shadow-lg) !important;
    border: 1px solid var(--border) !important;
}

.dxpHDCR_Office365 {
    background: var(--navy-900) !important;
    background-image: linear-gradient(135deg, var(--navy-900), var(--navy-700)) !important;
    border-bottom: 2px solid var(--gold) !important;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0 !important;
}

/* ─── RESPONSIVE ────────────────────────────────────────── */

@media only screen and (max-width: 991px) {
    .menu_1 {
        position: fixed;
        right: inherit;
        left: 0;
        top: var(--header-height);
        width: 100vw;
        height: auto;
        background: var(--navy-800);
        border-top: 1px solid rgba(255,255,255,0.05);
        box-shadow: 0 4px 12px rgba(10,22,40,0.3);
        padding: 8px 16px;
        z-index: 999;
    }

        .menu_1 ul.navbar-nav {
            flex-direction: column;
            gap: 2px;
        }

    .navbar-toggler {
        z-index: 1001;
    }

    .navbar {
        padding: 0;
    }

    #sidebar-wrapper {
        display: none;
    }

    #page-content-wrapper {
        padding: 16px;
    }
}

@media only screen and (max-width: 600px) {
    .header-logo {
        left: 12px;
    }

    .login {
        width: 95vw;
    }

    .main-navigation {
        padding: 0 12px;
    }
}

/* ─── MISC UTILITIES ────────────────────────────────────── */

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

.text-muted {
    color: var(--text-muted);
}

.text-gold {
    color: var(--gold);
}

hr.divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 16px 0;
}

::-webkit-scrollbar {
    width: 8px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--slate-100);
}

::-webkit-scrollbar-thumb {
    background: var(--slate-300);
    border-radius: 3px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--slate-400);
    }


/* ─── CHKIN ────────────────────────────────────── */

.checkin-search-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 20px 24px;
    margin-bottom: 16px;
}

.checkin-search-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.search-field-group {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    flex-wrap: wrap;
    flex: 1;
}

.toggle-group {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--slate-100);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font-display);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-secondary);
    white-space: nowrap;
}

.athlete-info-pane {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.athlete-identity {
    width: 260px;
    min-width: 200px;
    flex-shrink: 0;
}

.items-pane {
    flex: 1;
    min-width: 300px;
}

.items-pane-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.items-pane-title {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--navy-700);
}

.dxbButton_Office365,
.dxbButton_Office365 > div {
    background: none !important;
    background-image: none !important;
    color: #4a5e78 !important;
    border: none !important;
    box-shadow: none !important;
}


.card {
    background: white;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    margin-top: 10px;
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.export-section {
    text-align: right;
    margin-bottom: 10px;
}

.dxeCheckBoxList_Office365 {
    border: none;
}

.chk-item {
    display: inline-block;
    width: 120px;
    margin: 5px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    text-align: center;
    vertical-align: top;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}


.dxgvEditFormTable_Office365 .dxflGroup_Office365{
    max-width: 900px;
}