/* TEKAYDINLAR CUSTOMER PORTAL */
/* VARIABLES */
:root {
    --tk-gold: #E5C56B;
    --tk-gold-hover: #D7B65A;
    --tk-black: #0D0D0D;
    --tk-dark: #151515;
    --tk-dark-soft: #1C1C1C;
    --tk-white: #FFFFFF;
    --tk-background: #F4F4F1;
    --tk-light: #F8F8F5;
    --tk-border: #E5E5E1;
    --tk-text: #202020;
    --tk-muted: #777777;
    --tk-danger: #A52626;
}
/* RESET */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html,
body {
    min-height: 100%;
}
body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--tk-background);
    color: var(--tk-text);
}
/* GENERAL FORM ELEMENTS */
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--tk-text);
    font-size: 13px;
    font-weight: 600;
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #D6D6D2;
    border-radius: 3px;
    background: var(--tk-white);
    color: var(--tk-text);
    font-size: 14px;
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}
.form-group input:focus,
.form-group select:focus {
    border-color: var(--tk-gold);
    box-shadow:
        0 0 0 3px
        rgba(229, 197, 107, 0.12);
}
.form-group small {
    display: block;
    margin-top: 7px;
    color: var(--tk-muted);
    font-size: 12px;
    line-height: 1.5;
}
/* GENERAL BUTTON */
.btn-primary {
    padding: 13px 20px;
    border: none;
    border-radius: 3px;
    background: var(--tk-black);
    color: var(--tk-white);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}
.btn-primary:hover {
    background: var(--tk-gold);
    color: var(--tk-black);
}
/* ALERTS */
.alert {
    margin-bottom: 20px;
    padding: 13px 15px;
    border-radius: 3px;
    font-size: 13px;
    line-height: 1.5;
}
.alert-success {
    border-left: 3px solid var(--tk-gold);
    background:#FFFBEF;
    color: #5B4B20;
}
.alert-error {
    border-left: 3px solid var(--tk-danger);
    background: #FFF3F2;
    color:#8F1D14;
}
/* LOGIN PAGE */
.portal-login-page {
    min-height: 100vh;
    background: var(--tk-black);
}
.portal-login-layout {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 60% 40%;
}
/* LOGIN LEFT AREA */
.portal-login-visual {
    position: relative;
    min-height: 100vh;
    background-color: var(--tk-black);
    background-image: url('../images/tk_tam.png');
    background-size: 42% auto;
    background-position: center 27%;
    background-repeat: no-repeat;
    overflow: hidden;
}
.portal-login-visual-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.02) 0%,
            rgba(0, 0, 0, 0.02) 55%,
            rgba(0, 0, 0, 0.60) 100%
        );
}
.portal-login-visual-content {
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 9%;
    max-width: 600px;
    color: var(--tk-white);
    z-index: 2;
}
.portal-login-brand-small {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
}
.portal-login-gold-line {
    width: 62px;
    height: 3px;
    margin: 17px 0 22px;
    background: var(--tk-gold);
}
.portal-login-visual-content h1 {
    margin-bottom: 18px;
    font-size: clamp( 34px, 4vw,58px );
    line-height: 1.08;
    font-weight: 600;
}
.portal-login-visual-content p {
    max-width: 390px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 1.6;
}
/* LOGIN RIGHT PANEL */
.portal-login-panel {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: var(--tk-white);
}
.portal-login-form-wrapper {
    width: 100%;
    max-width: 430px;
}
.portal-login-brand {
    margin-bottom: 55px;
}
.portal-login-brand-name {
    color: var(--tk-black);
    font-size: 25px;
    font-weight: 800;
    letter-spacing: 2.5px;
}
.portal-login-brand-subtitle {
    margin-top: 7px;
    color: var(--tk-muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
}
.portal-login-brand-line {
    width: 48px;
    height: 3px;
    margin-top: 18px;
    background:var(--tk-gold);
}
.portal-login-intro {
    margin-bottom: 32px;
}
.portal-login-intro h2 {
    margin-bottom: 10px;
    color: var(--tk-black);
    font-size: 31px;
    font-weight: 600;
}
.portal-login-intro p {
    max-width: 330px;
    color: var(--tk-muted);
    font-size: 14px;
    line-height: 1.6;
}
.portal-login-field {
    margin-bottom: 22px;
}
.portal-login-field label {
    display: block;
    margin-bottom: 9px;
    color: #343434;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
.portal-login-field input {
    width: 100%;
    padding: 15px 16px;
    border:  1px solid #D8D8D8;
    border-radius: 3px;
    outline: none;
    background: #FAFAFA;
    color: var(--tk-text);
    font-size: 14px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}
.portal-login-field input:focus {
    background: var(--tk-white);
    border-color: var(--tk-gold);
    box-shadow:
        0 0 0 3px
        rgba(229, 197, 107, 0.14);
}
.portal-login-field input::placeholder {
    color:#AAAAAA;
}
.portal-login-button {
    width: 100%;
    margin-top: 8px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    border-radius: 3px;
    background: var(--tk-black);
    color: var(--tk-white);
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}
.portal-login-button-arrow {
    color: var(--tk-gold);
    font-size: 20px;
}
.portal-login-button:hover {
    background: var(--tk-gold);
    color: var(--tk-black);
}
.portal-login-button:hover
.portal-login-button-arrow {
    color: var(--tk-black);
}
.portal-login-error {
    margin-bottom: 22px;
    padding: 13px 15px;
    border-left: 3px solid var(--tk-danger);
    background: #FFF3F2;
    color: #8F1D14;
    font-size: 13px;
}
.portal-login-footer {
    margin-top: 48px;
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border-top: 1px solid #EEEEEE;
    color: #999999;
}
.portal-login-footer span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
}
.portal-login-footer small {
    font-size: 10px;
}
/* CUSTOMER PORTAL */
.customer-portal-page {
    min-height: 100vh;
    background: var(--tk-background);
}
.customer-shell {
    min-height: 100vh;
}
/* CUSTOMER HEADER */
.customer-header {
    min-height: 92px;
    padding:  18px 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    background: var(--tk-black);
    border-bottom: 3px solid var(--tk-gold);
}
.customer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--tk-white);
    text-decoration: none;
}
.customer-logo {
    width: 120px;
    max-height: 48px;
    object-fit: contain;
}
.customer-brand-text {
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}
.customer-brand-text span {
    display: block;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
}
.customer-brand-text small {
    display: block;
    margin-top: 5px;
    color: var(--tk-gold);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
}
.customer-user-area {
    display: flex;
    align-items: center;
    gap: 25px;
}
.customer-user-meta {
    text-align: right;
}
.customer-user-meta span {
    display: block;
    margin-bottom: 4px;
    color: #666666;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.5px;
}
.customer-user-meta strong {
    color: var(--tk-white);
    font-size: 13px;
    font-weight: 600;
}
.customer-logout {
    min-width: 105px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #353535;
    border-radius: 3px;
    color: #CCCCCC;

    text-decoration: none;
    font-size: 11px;
    transition:
        border-color 0.2s ease,
        color 0.2s ease;
}
.customer-logout span {
    color: var(--tk-gold);
    font-size: 17px;
}
.customer-logout:hover {
    border-color: var(--tk-gold);
    color: var(--tk-white);
}
/* CUSTOMER CONTENT */
.customer-content {
    padding: 65px 25px;
    display: flex;
    justify-content: center;
}

.customer-search-card {
    width: 100%;
    max-width: 920px;
    padding: 45px 48px;
    background: var(--tk-white);
    border: 1px solid var(--tk-border);
    border-radius: 4px;
    box-shadow:
        0 14px 40px
        rgba(0, 0, 0, 0.045);
}
.customer-search-heading {
    margin-bottom: 35px;
}
.customer-eyebrow {
    margin-bottom: 10px;
    color: var(--tk-gold);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2.8px;
}
.customer-search-heading h1 {
    color: var(--tk-black);
    font-size: 34px;
    font-weight: 650;
}
.customer-title-line {
    width: 48px;
    height: 3px;
    margin: 17px 0 18px;
    background: var(--tk-gold);
}
.customer-search-heading p {
    max-width: 520px;
    color: var(--tk-muted);
    font-size: 14px;
    line-height: 1.65;
}
/* CUSTOMER SEARCH */
.customer-search-form {
    margin-bottom: 30px;
}
.customer-search-form label {
    display: block;
    margin-bottom: 9px;
    color:#444444;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.customer-search-row {
    display: flex;
    gap: 10px;
}
.customer-search-row input {
    flex: 1;
    min-width: 0;
    padding: 15px 16px;
    border:  1px solid #D5D5D1;
    border-radius: 3px;
    background: #FAFAF8;
    color: var(--tk-text);
    outline: none;
    font-size: 15px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}
.customer-search-row input:focus {
    border-color: var(--tk-gold);
    background: var(--tk-white);
    box-shadow:
        0 0 0 3px
        rgba(229, 197, 107, 0.12);
}
.customer-search-button {
    min-width: 140px;
    padding:14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: none;
    border-radius: 3px;
    background: var(--tk-black);
    color: var(--tk-white);
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}
.customer-search-button span {
    color:  var(--tk-gold);
    font-size: 18px;
}
.customer-search-button:hover {
    background: var(--tk-gold);
    color: var(--tk-black);
}
.customer-search-button:hover span {
    color: var(--tk-black);
}
.customer-error {
    margin-bottom: 25px;
    padding: 13px 15px;
    border-left: 3px solid var(--tk-danger);
    background: #FFF3F2;
    color: #8F1D14;
    font-size: 13px;
}
/* VEHICLE RESULT */
.vehicle-result-card {
    margin-top: 15px;
    padding: 28px 30px;
    border: 1px solid #E5E2D8;
    border-radius: 3px;
    background: #FCFBF7;
}
.vehicle-result-status {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #777777;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.8px;
}
.vehicle-result-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--tk-gold);
}
.vehicle-result-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 35px;
}
.vehicle-result-item + .vehicle-result-item {
    padding-left: 35px;
    border-left: 1px solid #E4E1D6;
}
.vehicle-result-label {
    display: block;
    margin-bottom: 10px;
    color: #888888;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}
.vehicle-chassis {
    color: var(--tk-black);
    font-family: Consolas, Monaco, monospace;
    font-size: 17px;
    font-weight: 600;
}
.vehicle-company {
    color: var(--tk-black);
    font-size: 19px;
    font-weight: 650;
}
/* CUSTOMER FOOTER INFORMATION */
.customer-search-footer {
    margin-top: 30px;
    padding-top: 20px;
    display: flex;
    align-items: center;
    gap: 9px;
    border-top: 1px solid #EEEEEB;
    color: #999999;
    font-size: 11px;
}
.customer-security-mark {
    color:
        var(--tk-gold);
    font-size: 8px;
}
/* ADMIN LAYOUT */
.admin-layout {
    min-height: 100vh;
    display: flex;
    background: var(--tk-background);
}
.admin-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 270px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--tk-black);
    color: var(--tk-white);
    border-right: 1px solid #222222;
    z-index: 100;
}
/* ADMIN BRAND */
.admin-brand {
    padding: 32px 28px 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.admin-brand-link {
    display: block;
    text-decoration: none;
}
.admin-logo {
    display: block;
    width: 150px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
.admin-brand-text {
    margin-top: 18px;
    padding-top: 15px;
    border-top: 2px solid var(--tk-gold);
    color: #AAAAAA;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
}
/* ADMIN SIDEBAR MENU */
.admin-menu {
    padding: 28px 16px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.admin-menu-item {
    position: relative;
    min-height: 50px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-radius: 3px;
    color: #AFAFAF;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}
.admin-menu-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--tk-white);
}
.admin-menu-item.active {
    background: rgba(229, 197, 107, 0.08);
    color: var(--tk-white);
}
.admin-menu-item.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    bottom: 9px;
    width: 3px;
    background: var(--tk-gold);
}
.admin-menu-icon {
    color:#555555;
    font-size: 8px;
}
.admin-menu-item.active
.admin-menu-icon,
.admin-menu-item:hover
.admin-menu-icon {
    color: var(--tk-gold);
}
/* ADMIN USER AREA */
.admin-sidebar-bottom {
    margin-top: auto;
    padding: 25px 28px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.admin-user-label {
    margin-bottom: 8px;
    color: #666666;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.8px;
}
.admin-current-user {
    margin-bottom: 4px;
    color: var(--tk-white);
    font-size: 14px;
    font-weight: 600;
}
.admin-current-role {
    margin-bottom: 22px;
    color:#777777;
    font-size: 12px;
}
.admin-signout {
    padding-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #AAAAAA;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
}
.admin-signout span {
    color: var(--tk-gold);
    font-size: 18px;
}
.admin-signout:hover {
    color: var(--tk-white);
}
/* ADMIN MAIN */
.admin-main {
    width: calc(100% - 270px);
    min-height: 100vh;
    margin-left: 270px;
    padding: 46px 50px 60px;
}
/* ADMIN DASHBOARD HEADER */
.admin-dashboard-header {
    margin-bottom: 42px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}
.admin-page-eyebrow {
    margin-bottom: 10px;
    color: var(--tk-gold);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 3px;
}
.admin-dashboard-header h1 {
    color: var(--tk-black);
    font-size: 37px;
    line-height: 1.1;
    font-weight: 650;
}
.admin-title-line {
    width: 52px;
    height: 3px;
    margin: 17px 0 18px;
    background: var(--tk-gold);
}
.admin-dashboard-header p {
    color:
        var(--tk-muted);
    font-size: 14px;
}
.admin-header-status {
    margin-top: 10px;
    padding: 9px 13px;
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid var(--tk-border);
    border-radius: 3px;
    background:
        var(--tk-white);
    color: #666666;
    font-size: 11px;
    font-weight: 600;
}
.admin-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background:
        var(--tk-gold);
}
/* ADMIN DASHBOARD CARDS */
.dashboard-cards {
    margin-bottom: 28px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}
.dashboard-card {
    position: relative;
    min-height: 260px;
    padding: 30px 32px;
    border: 1px solid var(--tk-border);
    border-radius: 4px;
    background: var(--tk-white);
    box-shadow:
        0 12px 35px
        rgba(0, 0, 0, 0.035);
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}
.dashboard-card:hover {
    transform: translateY(-3px);
    border-color:#DDD4B9;
    box-shadow:
        0 16px 40px
        rgba(0, 0, 0, 0.07);
}
.dashboard-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
}
.dashboard-card-accent {
    width: 30px;
    height: 3px;
    background: var(--tk-gold);
}
.dashboard-card-label {
    color:#777777;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}
.dashboard-card-number {
    margin: 27px 0 12px;
    color: var(--tk-black);
    font-size: 54px;
    line-height: 1;
    font-weight: 650;
}
.dashboard-card-description {
    max-width: 280px;
    color:#888888;
    font-size: 13px;
    line-height: 1.6;
}
.dashboard-card-link {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 27px;
    padding-top: 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #EEEEEB;
    color: var(--tk-black);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
}
.dashboard-card-link span {
    color: var(--tk-gold);
    font-size: 19px;
}
.admin-dashboard-info {
    padding: 30px 32px;
    border-radius: 4px;
    background: var(--tk-black);
    color: var(--tk-white);
}
.admin-info-label {
    display: block;
    margin-bottom: 12px;
    color: var(--tk-gold);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 2.5px;
}
.admin-dashboard-info h2 {
    margin-bottom: 9px;
    font-size: 20px;
    font-weight: 600;
}
.admin-dashboard-info p {
    max-width: 600px;
    color:#999999;
    font-size: 13px;
    line-height: 1.6;
}
/* ADMIN PAGE HEADER */
.admin-page-header {
    margin-bottom: 32px;
}
.admin-page-header h1 {
    position: relative;
    margin-bottom: 16px;
    padding-bottom: 17px;
    color: var(--tk-black);
    font-size: 32px;
    font-weight: 650;
}
.admin-page-header h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 3px;
    background: var(--tk-gold);
}
.admin-page-header p {
    color: var(--tk-muted);
    font-size: 14px;
}
/* ADMIN SECTIONS */
.admin-section {
    margin-bottom: 28px;
    padding: 30px;
    border: 1px solid var(--tk-border);
    border-radius: 4px;
    background: var(--tk-white);
    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.03);
}
.admin-section h2 {
    margin-bottom: 24px;
    color: var(--tk-black);
    font-size: 18px;
    font-weight: 650;
}
/* ADMIN FORM */
.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}
.admin-form-grid
.form-action {
    display: flex;
    align-items: flex-end;
}
.admin-form-grid
.form-action
.btn-primary {
    width: auto;
    min-width: 150px;
    background: var(--tk-gold);
    color: var(--tk-black);
}
.admin-form-grid
.form-action
.btn-primary:hover {
    background: var(--tk-gold-hover);
}
/* ADMIN LIST HEADER */
.admin-list-header {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.admin-list-header h2 {
    margin-bottom: 5px;
}
.admin-list-description {
    color: #999999;
    font-size: 12px;
}
/* ADMIN SEARCH */
.admin-search {
    display: flex;
    align-items: center;
    gap: 8px;
}
.admin-search
input[type="text"] {
    width: 285px;
    padding: 10px 13px;
    border: 1px solid #D8D8D5;
    border-radius: 3px;
    background: #FAFAF8;
    font-size: 13px;
    outline: none;
}
.admin-search
input[type="text"]:focus {
    border-color: var(--tk-gold);
}
.admin-search button {
    padding: 10px 17px;
    border: 1px solid var(--tk-black);
    border-radius: 3px;
    background: var(--tk-black);
    color: var(--tk-white);
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
}
.admin-search button:hover {
    border-color: var(--tk-gold);
    background: var(--tk-gold);
    color: var(--tk-black);
}
.search-clear {
    padding: 9px 8px;
    color: #777777;
    text-decoration: none;
    font-size: 12px;
}
/* ADMIN TABLE */
.admin-table-wrapper {
    width: 100%;
    overflow-x: auto;
}
.admin-table-wrapper table {
    width: 100%;
    border-collapse: collapse;
}
.admin-table-wrapper th,
.admin-table-wrapper td {
    padding:14px 15px;
    text-align: left;
    border-bottom: 1px solid #ECECE8;
    font-size: 13px;
}
.admin-table-wrapper th {
    background:#F7F7F4;
    color: #666666;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
.admin-table-wrapper tbody tr {
    transition: background 0.15s ease;
}
.admin-table-wrapper tbody tr:hover {
    background: #FCFAF3;
}
/* STATUS */
.status-active,
.status-inactive {
    font-size: 11px;
    font-weight: 700;
}
.status-active {
    color: #50714A;
}
.status-inactive {
    color:#999999;
}
/* ADMIN ACTION BUTTONS */
.action-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}
.inline-form {
    display: inline;
    margin: 0;
}
.btn-edit,
.btn-delete {
    padding: 7px 11px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}
.btn-edit {
    border: 1px solid var(--tk-black);
    background: var(--tk-black);
    color: var(--tk-white);
}
.btn-edit:hover {
    border-color: var(--tk-gold);
    background: var(--tk-gold);
    color: var(--tk-black);
}
.btn-delete {
    border:1px solid #D5D5D5;
    background: var(--tk-white);
    color: var(--tk-danger);
}
.btn-delete:hover {
    border-color: var(--tk-danger);
    background: var(--tk-danger);
    color: var(--tk-white);
}
/* EDIT FORMS */
.admin-edit-section {
    max-width: 700px;
}
.admin-edit-section form {
    width: 100%;
}
.edit-form-actions {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.edit-form-actions
.btn-primary {
    width: auto;
    min-width: 150px;
    background: var(--tk-gold);
    color: var(--tk-black);
}
.edit-form-actions
.btn-primary:hover {
    background: var(--tk-gold-hover);
}
.btn-secondary {
    display: inline-block;
    padding: 12px 20px;
    border: 1px solid #CCCCCC;
    border-radius: 3px;
    background: var(--tk-white);
    color: #444444;
    text-decoration: none;
    font-size: 13px;
}
.btn-secondary:hover {
    background: var(--tk-light);
}
.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.checkbox-label input {
    width: auto !important;
    margin: 0;
}
/* RESPONSIVE - TABLET */
@media (max-width: 1000px) {
    .portal-login-layout {
        grid-template-columns: 52% 48%;
    }
    .portal-login-panel {
        padding: 42px;
    }
    .admin-sidebar {
        width: 215px;
    }
    .admin-main {
        width: calc(100% - 215px);
        margin-left: 215px;
        padding:35px 28px;
    }
    .admin-logo {
        width: 125px;
    }
}
/* RESPONSIVE - MOBILE */
@media (max-width: 760px) {
    /* LOGIN */
    .portal-login-layout {
        display: block;
    }
    .portal-login-visual {
        min-height: 280px;
        background-size: 180px auto;
        background-position: center 45px;
    }
    .portal-login-visual-content {
        left: 28px;
        right: 28px;
        bottom: 25px;
    }
    .portal-login-visual-content h1 {
        font-size: 28px;
    }
    .portal-login-visual-content p {
        display: none;
    }
    .portal-login-brand-small {
        display: none;
    }
    .portal-login-gold-line {
        margin-bottom: 15px;
    }
    .portal-login-panel {
        min-height: auto;
        padding: 42px 27px;
    }
    .portal-login-brand {
        margin-bottom: 38px;
    }
    /* CUSTOMER */
    .customer-header {
        padding:18px 22px;
        flex-direction: column;
        align-items: flex-start;
    }
    .customer-user-area {
        width: 100%;
        justify-content: space-between;
    }
    .customer-user-meta {
        text-align: left;
    }
    .customer-content {
        padding: 35px 16px;
    }
    .customer-search-card {
        padding: 30px 24px;
    }
    .customer-search-row {
        flex-direction: column;
    }
    .customer-search-button {
        width: 100%;
    }
    .vehicle-result-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .vehicle-result-item
    + .vehicle-result-item {
        padding-top: 25px;
        padding-left: 0;
        border-top:1px solid #E4E1D6;
        border-left: none;
    }
    /* ADMIN */
    .dashboard-cards {
        grid-template-columns: 1fr;
    }
    .admin-form-grid {
        grid-template-columns: 1fr;
    }
    .admin-list-header {
        flex-direction: column;

        align-items: stretch;
    }
    .admin-search {
        flex-wrap: wrap;
    }
    .admin-search
    input[type="text"] {
        width: 100%;
    }
}