﻿/*<%--<style >*/
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    height: 100vh;
}

.container {
    width: 1100px;
    background: #fff;
    border-radius: 6px;
    display: flex;
    padding: 40px;
    box-sizing: border-box;
    margin: 0 !important;
}

.left-panel {
    width: 25%;
    text-align: center;
    border-right: 1px solid #eee;
    padding-right: 30px;
}

    .left-panel img {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 15px;
    }

    .left-panel h3 {
        margin: 10px 0 5px;
        font-size: 15px;
    }

    .left-panel p {
        color: gray;
        font-size: 14px;
    }

.middle-panel {
    width: 45%;
    padding: 0 40px;
    border-right: 1px solid #eee;
    flex: 1;
    padding: 20px;
    color: #d5d6e1;
}

.right-panel {
    width: 30%;
    padding-left: 40px;
}

h2 {
    margin-top: 0;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 15px;
}

    .form-group label {
        display: block;
        font-size: 13px;
        margin-bottom: 5px;
    }

.row {
    display: flex;
    gap: 15px;
}

    .row .form-group {
        flex: 1;
    }

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.experience-btn {
    padding: 6px 12px;
    border: 1px solid #ccc;
    background: white;
    cursor: pointer;
}

.wrapper {
    position: relative;
    width: 300px;
}

.wtxtBox {
    width: 100%;
    padding: 10px 40px 10px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.wrapper button {
    position: absolute;
    right: 24px;
    top: 68%;
    transform: translateY(-50%);
    border: none;
    background: #007bff;
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
}

.btnSave {
    border: none;
    background: #007bff;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 15px;
}

.mappingDiv {
    width: 350px;
    margin: 20px auto;
    background: #fff;
    border: 1px solid #ccc;
}

.item {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    position: relative;
}

    .item.active {
        background: #cfe3f5;
    }

.sender {
    font-weight: bold;
    font-size: 14px;
}

.subject {
    color: #333;
}

.preview {
    font-size: 12px;
    color: #666;
}

.time {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 12px;
    color: #333;
}

.alert {
    position: absolute;
    right: 10px;
    bottom: 10px;
    color: red;
    font-weight: bold;
}

.right-panel {
    width: 350px;
    background: #ffffff;
    overflow-y: auto;
}

.email-item {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    position: relative;
}

    .email-item.active {
        background: #cfe3f5;
    }

.sender {
    font-weight: bold;
    font-size: 14px;
}

.preview {
    font-size: 12px;
    color: #666;
    padding: 8px 12px
}

.time {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 12px;
}

.alert {
    color: red;
    font-weight: bold;
    position: absolute;
    right: 10px;
    bottom: 10px;
}

.email-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

    .email-item .details {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        font-size: 12px;
        color: #444;
        margin-top: 5px;
    }

    .email-item.expanded .details {
        max-height: 200px;
    }

.collapsible {
    max-height: 500px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

    .collapsible.collapsed {
        max-height: 0;
    }

.email-item .btn-cancel {
    display: none;
}

.email-item.expanded .btn-expand {
    display: none;
}

.email-item.expanded .btn-cancel {
    display: inline-block;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-expand {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
}

    .btn-expand:hover {
        transform: translateY(-2px);
        font-weight: bolder;
    }

    .btn-expand i {
        transition: transform 0.3s ease;
    }

.email-item.expanded .btn-expand i {
    transform: rotate(180deg);
}

.btn-cancel {
    color: black;
    font-weight: bolder;
}

    .btn-cancel:hover {
        transform: translateY(-2px);
    }

.btn i {
    font-size: 16px;
}

.btn {
    min-width: 110px;
}

.email-item.expanded .btn-expand {
    display: none;
}

.email-item:not(.expanded) .btn-cancel {
    display: none;
}

.subject {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: #555;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    margin-left: auto;
    flex: 1;
    min-width: 280px;
}

    .subject span {
        padding: 4px 10px;
        background: white;
        border-radius: 4px;
        border: 1px solid #dee2e6;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        font-weight: 500;
        color: #333;
        transition: all 0.2s ease;
    }

        .subject span:not(:last-child)::after {
            content: ">>";
            color: #adb5bd;
            margin-left: 8px;
            margin-right: 8px;
            font-weight: normal;
        }

        .subject span:hover {
            /*background: #e3f2fd;*/
            /*border-color: #90caf9;*/
            color: #1976d2;
            transform: translateY(-1px);
        }

        .subject span:last-child {
            background: #007bff;
            color: white;
            border-color: #007bff;
            font-weight: 600;
            box-shadow: 0 2px 6px rgba(0, 123, 255, 0.3);
        }

@media (max-width: 768px) {
    .subject {
        padding: 6px 10px;
    }
}

.preview {
    padding: 18px 20px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-radius: 0 0 8px 8px;
}

.field-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.field-label {
    font-weight: 600;
    color: #1e40af;
    font-size: 15px;
    min-width: 70px;
    white-space: nowrap;
}

.form-dropdown {
    padding: 10px 14px;
    font-size: 14px;
    border: 2px solid #cbd5e1;
    border-radius: 8px;
    background: white;
    min-width: 220px;
    outline: none;
    transition: all 0.3s ease;
    color: #334155;
}

    .form-dropdown:focus {
        border-color: #3b82f6;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
        background: #fff;
    }

.btn-save {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    min-width: 110px;
    justify-content: center;
}

    .btn-save:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
    }

    .btn-save:active {
        transform: translateY(0);
        box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
    }

    .btn-save i {
        font-size: 16px;
    }

@media (max-width: 768px) {
    .field-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-dropdown {
        min-width: 100%;
    }
}

.tab-scroll {
    max-height: 400px;
    overflow-y: auto;
}

.table-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

table {
    margin-bottom: 0;
}

th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #495057;
    padding: 16px 12px !important;
}

td {
    padding: 16px 12px !important;
    vertical-align: middle;
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.name {
    font-weight: 600;
    color: #0d6efd;
}

.status-toggle {
    width: 42px;
    height: 22px;
    background-color: #e9ecef;
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
}

    .status-toggle.active {
        background-color: #198754;
    }

    .status-toggle::after {
        content: '';
        position: absolute;
        width: 18px;
        height: 18px;
        background: white;
        border-radius: 50%;
        top: 2px;
        left: 2px;
        transition: 0.3s;
        box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    }

    .status-toggle.active::after {
        left: 22px;
    }

tr:hover {
}

.details-link {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
}

    .details-link:hover {
    }

.modal-dialog {
    max-height: 60% !important;
}

.tabcontentscroll {
    overflow-y: scroll !important;
    max-height: 600px;
}

.tooltip-wrapper {
    position: relative;
    display: inline-block;
    cursor: help;
}

.itooltip {
    color: #6c757d;
    font-size: 1.1em;
}

.tooltiptext {
    visibility: hidden;
    position: absolute;
    z-index: 1000;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 8px;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.7em;
    line-height: 1.4;
    white-space: nowrap;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    pointer-events: none;
}

    .tooltiptext::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -6px;
        border-width: 6px;
        border-style: solid;
        border-color: #333 transparent transparent transparent;
    }

.tooltip-wrapper:hover .tooltiptext {
    visibility: visible;
}

.tooltip-wrapper .tooltiptext {
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.tooltip-wrapper:hover .tooltiptext {
    opacity: 1;
}

/*</style > --% >*/



/*
    site master

    <%--<style>
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    background: #f4f6f9;
}

form {
    width: 100%;
}

.sidebar {
    width: 240px;
    color: #fff;
    height: 100vh;
    padding-top: 20px;
}

    .sidebar a {
        color: #bbd1e5;
    }

    .sidebar h2 {
        text-align: center;
        margin-bottom: 30px;
        margin-top: 20px !important;
    }

    .sidebar ul {
        list-style: none;
        padding-left: 0 !important;
    }

        .sidebar ul li {
            padding: 15px 20px;
            cursor: pointer;
        }

            .sidebar ul li:hover {
                background: #32475b;
            }

.main {
    flex: 1;
    padding: 20px;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.card {
    padding: 20px;
    color: #fff;
    border-radius: 4px;
}

.green {
    background: #4CAF50;
}

.red {
    background: #F44336;
}

.blue {
    background: #0d6efd;
}

.yellow {
    background: #FFC107;
    color: #000;
}

.card h3 {
    font-size: 26px;
    margin-bottom: 5px;
}

.content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
}

.box {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 20px;
}

    .box h4 {
        margin-bottom: 15px;
    }

.chart {
    height: 200px;
    background: linear-gradient(135deg, #e3e6ea, #f8f9fb);
    border-radius: 4px;
}

.large-chart {
    height: 300px;
}

.bottom {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.container1920x1080 .overlay-div {
    position: absolute;
    inset: 0;
    background-color: #808080;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(0);
    transition: transform 0.9s ease;
    will-change: transform;
    z-index: 2;
}

.overlay-div.slide-right-right {
    transform: translateX(100%);
}

.overlay-div.slide-right {
    transform: translateX(0);
}

.container1920x1080 .overlay-text {
    white-space: nowrap;
    color: white;
    font-size: 20px;
    position: absolute;
    overflow: hidden;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.container1920x1080 .loading-logo {
    position: absolute;
    m top: 35%;
    width: 250px;
    height: auto;
}
body {
    font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
    background: linear-gradient(135deg, #0a0e1a 0%, #121826 100%);
    color: #d4d9e8;
    margin: 0;
    padding: 0;
    line-height: 1.65;
}

.container, .main-container, [class*="container"] {
    background: rgba(22, 27, 42, 0.96);
    border-radius: 18px;
    box-shadow: 0 25px 75px rgba(60, 75, 130, 0.28);
    border: 1px solid rgba(110, 130, 190, 0.18);
    overflow: hidden;
}

header, .header, [class*="header"] {
    background: linear-gradient(to right, #1e2a4a, #2c3f6b);
    color: #e8ecf5;
    padding: 1.8rem 2.3rem;
    box-shadow: 0 8px 30px rgba(40, 60, 120, 0.35);
}

h1, h2, h3, h4, .title, [class*="title"] {
    color: #b8c8f0;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-shadow: 0 3px 10px rgba(0,0,0,0.5);
}

nav, .nav, [class*="nav"] {
    background: rgba(18, 22, 35, 0.97);
    border-bottom: 1px solid rgba(90, 110, 170, 0.2);
}

table, .table, [class*="table"] {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    background: rgba(28, 33, 50, 0.9);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(50, 70, 130, 0.22);
}

th, .th, [class*="th"] {
    background: linear-gradient(to bottom, #2c3f6b, #1e2a4a);
    color: #e0e8f8;
    font-weight: 700;
    padding: 20px 16px;
    text-transform: uppercase;
    font-size: 0.86rem;
    letter-spacing: 1.1px;
}

td, .td, [class*="td"] {
    padding: 17px 16px;
    border-bottom: 1px solid rgba(80, 95, 150, 0.18);
    transition: all 0.3s ease;
}

tr:hover td {
    background: rgba(55, 70, 120, 0.35);
    transform: scale(1.003);
}

button, .btn, [class*="btn"], input[type="button"], input[type="submit"] {
    background: linear-gradient(to right, #3a4f7a, #5c6f9e);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 700;
    letter-spacing: 0.8px;
    box-shadow: 0 8px 22px rgba(60, 85, 150, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    button:hover, .btn:hover, [class*="btn"]:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 32px rgba(70, 95, 160, 0.45);
        background: linear-gradient(to right, #4a5f8a, #6c7fae);
    }

.card, .panel, .box, [class*="card"], [class*="panel"] {
    background: rgba(28, 33, 50, 0.92);
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(50, 70, 130, 0.2);
    border: 1px solid rgba(100, 125, 180, 0.22);
    transition: transform 0.3s ease;
}

    .card:hover, .panel:hover {
        transform: translateY(-8px);
    }

input, select, textarea, [class*="input"], [class*="form-control"] {
    background: rgba(18, 22, 35, 0.85);
    border: 2px solid rgba(100, 125, 180, 0.35);
    color: #d4d9e8;
    border-radius: 12px;
    padding: 13px 18px;
    transition: all 0.3s ease;
}

    input:focus, select:focus, textarea:focus {
        border-color: #6c7fae;
        box-shadow: 0 0 0 5px rgba(108, 127, 174, 0.22);
        outline: none;
    }

a, .link, [class*="link"] {
    color: #9ab0e0;
    text-decoration: none;
    transition: all 0.3s ease;
}

    a:hover {
        color: #c0d0f5;
    }

.badge, .label, [class*="badge"], [class*="status"] {
    border-radius: 30px;
    padding: 7px 16px;
    font-size: 0.83rem;
    font-weight: 700;
    background: rgba(60, 85, 150, 0.3);
    color: #e0e8f8;
}

::-webkit-scrollbar {
    width: 9px;
    height: 9px;
}

::-webkit-scrollbar-track {
    background: #121826;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(#3a4f7a, #1e2a4a);
    border-radius: 20px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #5c6f9e;
    }

.container::before {
    content: '';
    position: absolute;
    inset: -60%;
    background: radial-gradient(circle at center, rgba(108, 127, 174, 0.10) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.endpoint-item, [class*="endpoint"] {
    border-left: 6px solid #6c7fae;
}

body::after {
    content: '⚔';
    position: fixed;
    bottom: 40px;
    right: 45px;
    font-size: 2.8rem;
    color: rgba(108, 127, 174, 0.08);
    pointer-events: none;
    z-index: -1;
}

.main-content {
    padding: 2.8rem;
}

</style>--%>
*/