:root {
    --vipgo-primary: #0d7085;
    --vipgo-accent: #f26d2b;
    --vipgo-primary-hover: #0a5a6b;
    --vipgo-accent-hover: #d85a22;
}

body {
    background-color: #f5f6fa;
}

/* Navbar logout butonu */
.navbar-logout-btn {
    background-color: #f26d2b;
    color: #fff;
    padding: 11px 14px;
    margin: -5px 0;
    font-weight: 400;
}

.navbar-logout-btn:hover {
    background-color: var(--vipgo-accent-hover);
    color: #fff;
}

/* Navbar Menü butonu (referans tasarım: turuncu, hamburger) */
.navbar-menu-btn {
    background-color: #f26d2b;
    color: #fff;
    padding: 7px 18px;
    margin: -5px 0;
    font-weight: 500;
    border: none;
    border-radius: 33px;
}

.navbar-menu-btn:hover,
.navbar-menu-btn:focus {
    background-color: var(--vipgo-accent-hover);
    color: #fff;
    border: none;
    box-shadow: 0 2px 10px rgba(242, 109, 43, 0.35);
}

.navbar-menu-btn i {
    font-size: 1.25rem;
}

.navbar-menu-dropdown-menu {
    min-width: 220px;
    padding: 8px;
    border-radius: 12px;
    border: 1px solid #e8eaef;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    margin-top: 8px;
}

.navbar-menu-dropdown-menu .dropdown-item {
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.9375rem;
}

.navbar-menu-dropdown-menu .dropdown-item:hover {
    background-color: rgba(13, 112, 133, 0.08);
    color: #0d7085;
}

.navbar-menu-dropdown-menu .dropdown-item i {
    font-size: 1.2rem;
    opacity: 0.9;
}

.navbar-menu-logout:hover {
    background-color: rgba(242, 109, 43, 0.12) !important;
    color: #d85a22 !important;
}

.navbar-menu-dropdown-menu .dropdown-divider {
    margin: 8px 0;
}

/* Ana içerik alanı (layout) */
.main-content-area {
    background-color: #f5f6fa;
    min-height: calc(100vh - 76px);
}

input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
    box-shadow: 0 0 0px 1000px white inset !important;
    -webkit-text-fill-color: #000 !important;
    transition: background-color 5000s ease-in-out 0s;
}

.footer-page-list {
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 20px;
    list-style: none;
}

.footer-page-list li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-page-list li a {
    text-decoration: none;
    color: #797c89;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-page-list li a:hover {
    color: #0d7085;
}

.page-content {
    padding: 0px;
}

.page-content td {
    font-size: 14px;
}

.remove-btn, .remove-btn:hover {
    background-color: darkred;
    margin-left: 10px;
}

.product-add {
    width: 100%;
    background-color: #fff;
    display: block;
    margin-bottom: 15px;
    border-radius: 5px 5px 0px 0px;
    padding-top: 5px;
}

.form-area {
    padding: 20px 25px
}

.form-group label {
    width: 100%;
    color: #4b5565;
    margin-bottom: 5px;
}

.form-group input, .form-group select {
    display: block;
    width: 100%;
    height: 50px;
    padding: 15px 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #f5f6fa;
    background-clip: padding-box;
    border: 1px solid #ced4da54;
    outline: 0;
    border-radius: .25rem;
    transition: border-color .15s
    ease-in-out, box-shadow .15s
    ease-in-out;
    margin-bottom: 15px;
    font-size: 15px;
}


.form-group textarea {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #f5f6fa;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    outline: 0;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    margin-bottom: 15px;
    height: 120px;
}

.form-group small {
    margin-bottom: 15px;
    color: darkred;
    display: block;
    margin-top: 5px;
}

.submit-btn-df {
    background-color: #f26d2b;
    color: #fff;
    border: 0;
    padding: 11px 32px;
    border-radius: 3px;
    outline: 0;
    margin-top: 5px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
}

.submit-btn-df:hover {
    background-color: #d85a22;
    color: #fff;
    text-decoration: none;
}

.form-buttons-area .submit-btn-df {
    width: auto;
    max-width: none;
}

.form-search-area .submit-btn-df {
    width: auto;
    max-width: none;
}


.delete-modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color:#00000070;
    z-index: 99;
    transition: all 0ms;
}

.delete-modal .delete-area {
    width: 100%;
    max-width: 420px;
    display: table;
    margin: 0 auto;
    background-color: #fff;
    border: 1px solid #d7e2ef;
    margin-top: 5%;
    padding: 15px;
    border-radius: 6px;
}

.delete-modal .delete-area h6{
    text-align: center;
    margin-top: 15px;
    margin-bottom: 20px;
    font-size: 15px;
}

.delete-modal .delete-area ul{
    width: 100%;
    margin: 0;
    padding: 0 5px;
    display: inline-block;
}

.delete-modal .delete-area ul li{
    width: 50%;
    padding: 0px 5px;
    list-style: none;
    float: left;
}

.delete-modal .delete-area ul li a{
    width: 100%;
    background: linear-gradient(45deg, #43cea2, #185a9d);
    color: #fff;
    display: block;
    text-align: center;
    padding: 6px 5px;
    text-decoration: none;
    border-radius: 5px;
}

.delete-modal .delete-area ul li:first-child a{
    background: linear-gradient(45deg, #ff4e50, #c31432);
    color: #fff;
}

.select2-container--default .select2-selection--single {
    display: block;
    width: 100%;
    height: 50px;
    padding: 15px 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #f5f6fa;
    background-clip: padding-box;
    border: 1px solid #ced4da54 !important;
    outline: 0;
    border-radius: 4px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    margin-bottom: 15px;
    font-size: 15px;
}

.layout.fixed-sidebar {
    padding: 10px;
}

@media(min-width: 768px){
    .layout .content {
        padding-left: 10px !important;
        padding-top: 1px !important;
    }
}

.section-hood {
    background-color: #0d7085;
    border-radius: 5px 5px 0px 0px;
    padding: 15px 0px;
    display: inline-block;
    width: 100%;
    padding-bottom: 50px;
}

.section-hood h1 {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin-top: 18px;
}

.section-hood p {
    color: #fff;
    font-weight: 300;
    font-size: 15px;
}


.page-detail-form .page-box {
    width: 100%;
    display: block;
    margin-top: -50px;
}

.section-area {
    background: #fff;
    border-radius: 5px;
    padding: 0px;
    border: 1px solid #edeef2;
}

/* ===== Login Page - VipGoTransfer #0d7085 / #f26d2b ===== */
.login-page-wrapper {
    display: flex;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
}

.login-left-panel {
    flex: 0 0 45%;
    background: linear-gradient(145deg, #064a55 0%, #0d7085 50%, #0f8ba3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.login-left-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 40px;
}

.login-brand-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.login-brand-icon i {
    font-size: 36px;
    color: #fff;
}

.login-left-content h1 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.login-left-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-weight: 400;
}

.login-left-decoration {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.login-deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.login-deco-circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
}

.login-deco-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -60px;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
}

.login-deco-circle-3 {
    width: 180px;
    height: 180px;
    top: 40%;
    left: 60%;
    background: radial-gradient(circle, rgba(255,255,255,0.02) 0%, transparent 70%);
}

.login-right-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fc;
    padding: 40px 20px;
}

.login-area {
    width: 100%;
    max-width: 420px;
}

.login-box {
    width: 100%;
    padding: 36px 28px 32px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 24px rgba(13, 112, 133, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(13, 112, 133, 0.08);
}

.login-logo-wrapper {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f1f5;
    position: relative;
}

.login-logo {
    display: inline-block;
    max-width: 240px;
    width: 100%;
    height: auto;
    max-height: 72px;
    object-fit: contain;
    object-position: center;
    vertical-align: middle;
}

.login-logo-accent {
    display: block;
    width: 48px;
    height: 3px;
    margin: 16px auto 0;
    border-radius: 2px;
    background: linear-gradient(90deg, #0d7085 0%, #f26d2b 100%);
    opacity: 0.9;
}

.login-heading-block {
    margin-bottom: 24px;
}

.login-area h2 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    color: #1a1a2e;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.login-area .login-heading-block p {
    color: #7c7e94;
    font-size: 0.9375rem;
    margin-bottom: 24px;
    line-height: 1.5;
}

.login-area p {
    color: #7c7e94;
    font-size: 0.9375rem;
    margin-bottom: 28px;
}

.login-alert-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fef2f2;
    color: #b91c1c;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid #fecaca;
}

.login-alert-box i {
    font-size: 1.25rem;
    flex-shrink: 0;
}

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

.login-field label {
    display: block;
    font-weight: 500;
    color: #3a3a5c;
    margin-bottom: 7px;
    font-size: 15px;
}

.login-field label i {
    font-size: 16px;
    margin-right: 4px;
    color: #0d7085;
    margin-top: -1px;
    float: left;
}

.login-input {
    width: 100%;
    height: 50px;
    padding: 0 16px;
    font-size: 0.9375rem;
    color: #1a1a2e;
    background: #fff;
    border: 1.5px solid #e0e3ef;
    border-radius: 10px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.login-input::placeholder {
    color: #a0a3b5;
}

.login-input:focus {
    border-color: #0d7085;
    box-shadow: 0 0 0 3px rgba(13, 112, 133, 0.1);
    background: #fff;
}

.login-options {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
}

.login-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: #5a5c72;
    cursor: pointer;
    user-select: none;
}

.login-remember input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #0d7085;
    border-radius: 4px;
    cursor: pointer;
}

.login-submit-btn {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #f26d2b 0%, #e85a18 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(242, 109, 43, 0.25);
}

.login-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(242, 109, 43, 0.35);
    background: linear-gradient(135deg, #d85a22 0%, #c94d18 100%);
    color: #fff;
}

.login-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(242, 109, 43, 0.2);
}

.login-submit-btn i {
    font-size: 1.15rem;
    transition: transform 0.2s;
}

.login-submit-btn:hover i {
    transform: translateX(3px);
}

.login-area .footer-page-list {
    margin-top: 32px;
    margin-bottom: 0;
    gap: 20px;
}

.login-area .footer-page-list li a {
    color: #a0a3b5;
    font-size: 0.8125rem;
    transition: color 0.2s ease;
}

.login-area .footer-page-list li a:hover {
    color: #0d7085;
}

/* Login mobil */
@media (max-width: 992px) {
    .login-left-panel {
        display: none;
    }

    .login-right-panel {
        background: linear-gradient(170deg, #064a55 0%, #0d7085 100%);
        padding: 24px 16px;
    }

    .login-area {
        max-width: 440px;
    }

    .login-box {
        background: #fff;
        border-radius: 16px;
        padding: 32px 24px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    }
}

@media (max-width: 480px) {
    .login-right-panel {
        padding: 16px 12px;
    }

    .login-box {
        padding: 24px 18px;
        border-radius: 14px;
    }

    .login-logo {
        max-width: 200px;
    }

    .login-area h2 {
        font-size: 1.35rem;
    }

    .login-area p {
        font-size: 0.875rem;
    }

    .login-input {
        height: 48px;
        font-size: 0.9375rem;
    }

    .login-submit-btn {
        height: 48px;
    }
}

@media (max-width: 360px) {
    .login-box {
        padding: 20px 14px;
    }

    .login-area h2 {
        font-size: 1.2rem;
    }

    .login-input {
        height: 46px;
    }

    .login-submit-btn {
        height: 46px;
        font-size: 0.9375rem;
    }
}

.form-min-hood {
    color: #0d7085;
    border-bottom: 1px dashed #0d7085;
    padding-bottom: 8px;
    margin-bottom: 13px;
    margin-top: 9px;
    font-size: 15px;
}

.account-profile-area {
    text-align: center;
    margin-bottom: 25px;
    margin-top: 120px;
}

.account-profile-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-color: #f3f3f3;
    display: inline-block;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    margin-bottom: 15px;
}

.profile-upload-label {
    display: inline-block;
    background: #f26d2b;
    color: #fff;
    padding: 8px 18px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
}

.profile-upload-label:hover {
    background: #d85a22;
}

.account-profile-area #profile-input {
    display: none;
}

/* Select2 uyumu */
.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple{
    min-height: 38px;border-radius: 6px;border: 1px solid #ced4da;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
    line-height: 19px;
    padding-left: 0;
}
.select2-container--default .select2-selection--single .select2-selection__arrow{height: 36px;}

/* ===== Dashboard istatistik kartları ===== */
.dashboard-section {
    padding: 0;
}

.dashboard-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.35rem 1.25rem;
    border-radius: 14px;
    border: 1px solid #e8eaef;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    min-height: 100px;
}

.dashboard-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.dashboard-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.dashboard-card-primary .dashboard-card-icon {
    background: rgba(13, 112, 133, 0.12);
    color: #0d7085;
}

.dashboard-card-accent .dashboard-card-icon {
    background: rgba(242, 109, 43, 0.14);
    color: #f26d2b;
}

.dashboard-card-teal .dashboard-card-icon {
    background: rgba(13, 112, 133, 0.1);
    color: #0d7085;
}

.dashboard-card-placeholder .dashboard-card-icon {
    background: #f0f1f5;
    color: #9ca3af;
}

.dashboard-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
}

.dashboard-card-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #6b7280;
    line-height: 1.35;
}

.dashboard-card-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.dashboard-card-placeholder .dashboard-card-value {
    color: #9ca3af;
    font-weight: 600;
}

/* Dashboard üst istatistik pill */
.dashboard-stats-row {
    margin-bottom: 0;
}

.dashboard-stat-pill {
    background: #fff;
    border: 1px solid #e8eaef;
    border-radius: 12px;
    padding: 14px 16px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.dashboard-stat-pill:hover {
    box-shadow: 0 4px 12px rgba(13, 112, 133, 0.12);
    border-color: rgba(13, 112, 133, 0.25);
}

.dashboard-stat-value {
    display: block;
    font-size: 1.35rem;
    font-weight: 700;
    color: #0d7085;
    line-height: 1.2;
}

.dashboard-stat-label {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 4px;
    line-height: 1.3;
}

.dashboard-stat-pill-muted .dashboard-stat-value {
    color: #9ca3af;
}

/* Dashboard menü kartı (referans: teknetatili tarzı) */
.dashboard-menu-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8eaef;
}

.dashboard-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

@media (max-width: 576px) {
    .dashboard-menu-grid {
        grid-template-columns: 1fr;
    }
}

.dashboard-menu-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.dashboard-menu-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.dashboard-menu-btn i:first-child {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.dashboard-menu-btn span {
    flex: 1;
    text-align: left;
}

.dashboard-menu-btn i:last-child {
    font-size: 1.35rem;
    opacity: 0.9;
}

.dashboard-menu-btn-primary {
    background-color: #0d7085;
}

.dashboard-menu-btn-primary:hover {
    background-color: #0a5a6b;
}

.dashboard-menu-btn-accent {
    background-color: #f26d2b;
}

.dashboard-menu-btn-accent:hover {
    background-color: #d85a22;
}

/* ===== Sayfa başlıkları ===== */
.page-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a2e;
}

.page-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    background: #0d7085;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.btn-back:hover {
    background: #0a5a6b;
    color: #fff;
    transform: translateY(-1px);
}

/* ===== Rezervasyon kartları ===== */
.rez-empty-state {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8eaef;
}

.rez-empty-state i {
    font-size: 3rem;
    color: #c5c8d4;
    display: block;
    margin-bottom: 12px;
}

.rez-empty-state p {
    color: #6b7280;
    margin: 0;
}

.rez-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rez-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8eaef;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.15s;
}

.rez-card:hover {
    box-shadow: 0 8px 28px rgba(13, 112, 133, 0.1);
    transform: translateY(-2px);
}

.rez-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid #f0f1f5;
    background: #fafbfc;
}

.rez-no {
    font-weight: 700;
    font-size: 0.9375rem;
    color: #0d7085;
    display: flex;
    align-items: center;
    gap: 6px;
}

.rez-no i {
    font-size: 1.15rem;
}

.rez-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
}

.rez-badge-beklemede {
    background: #fef3cd;
    color: #856404;
}

.rez-badge-onaylandi {
    background: #d1e7dd;
    color: #0f5132;
}

.rez-badge-iptal {
    background: #f8d7da;
    color: #842029;
}

.rez-badge-tamamlandi {
    background: #d4edda;
    color: #155724;
}

.rez-badge-noshow {
    background: #e2e3e5;
    color: #41464b;
}

.rez-card-body {
    padding: 18px 20px;
    display: flex;
    gap: 24px;
}

.rez-route {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    min-width: 0;
}

.rez-route-point {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.rez-route-point small {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.rez-route-point p {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1a1a2e;
    line-height: 1.3;
    word-break: break-word;
}

.rez-route-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 14px;
}

.rez-route-dot-start {
    background: #0d7085;
}

.rez-route-dot-end {
    background: #f26d2b;
}

.rez-route-line {
    width: 2px;
    height: 16px;
    background: #dfe1e8;
    margin-left: 5px;
}

.rez-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    align-content: flex-start;
}

.rez-detail-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: #4b5565;
    white-space: nowrap;
}

.rez-detail-item i {
    font-size: 1rem;
    color: #0d7085;
    flex-shrink: 0;
}

.rez-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border-top: 1px solid #f0f1f5;
    background: #fafbfc;
}

.rez-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: #f26d2b;
}

.rez-date {
    font-size: 0.75rem;
    color: #9ca3af;
}

@media (max-width: 768px) {
    .rez-card-body {
        flex-direction: column;
        gap: 16px;
    }

    .rez-details {
        gap: 8px 16px;
    }
}

/* ===== Rezervasyon sayfa header ===== */
.rez-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

.rez-page-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rez-count-pill {
    display: inline-block;
    background: rgba(13, 112, 133, 0.1);
    color: #0d7085;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.rez-sofor-bekleyen-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(220, 38, 38, 0.08);
    color: #b91c1c;
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 10px;
}
.rez-sofor-bekleyen-pill i {
    font-size: 1rem;
}

/* Şoför atanmamış satır – çok hafif kırmızı arka plan */
.rez-table-card table tbody tr.rez-sofor-bekliyor td {
    background-color: rgba(254, 226, 226, 0.6);
}
.rez-table-card table tbody tr.rez-sofor-bekliyor:hover td {
    background-color: rgba(254, 202, 202, 0.7);
}

/* ===== Rezervasyon filtre tabları ===== */
.rez-filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.rez-filter-tab {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 500;
    text-decoration: none;
    border: 1.5px solid transparent;
    transition: all 0.2s ease;
    cursor: pointer;
}

.rez-filter-tab strong {
    font-weight: 700;
}

@media (max-width: 768px) {
    .rez-page-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .rez-filter-tabs {
        width: 100%;
    }

    .rez-filter-tab {
        flex: 1;
        justify-content: center;
        padding: 8px 10px;
        font-size: 0.75rem;
    }
}

.rez-filter-bugun {
    background: rgba(13, 112, 133, 0.1);
    color: #0d7085;
    border-color: rgba(13, 112, 133, 0.15);
}

.rez-filter-bugun.active,
.rez-filter-bugun:hover {
    background: #0d7085;
    color: #fff;
    border-color: #0d7085;
    box-shadow: 0 4px 12px rgba(13, 112, 133, 0.3);
}

.rez-filter-yarin {
    background: rgba(13, 112, 133, 0.06);
    color: #0a5a6b;
    border-color: rgba(13, 112, 133, 0.1);
}

.rez-filter-yarin.active,
.rez-filter-yarin:hover {
    background: #0a5a6b;
    color: #fff;
    border-color: #0a5a6b;
    box-shadow: 0 4px 12px rgba(10, 90, 107, 0.3);
}

.rez-filter-gelecek {
    background: rgba(242, 109, 43, 0.08);
    color: #d85a22;
    border-color: rgba(242, 109, 43, 0.12);
}

.rez-filter-gelecek.active,
.rez-filter-gelecek:hover {
    background: #f26d2b;
    color: #fff;
    border-color: #f26d2b;
    box-shadow: 0 4px 12px rgba(242, 109, 43, 0.3);
}

.rez-filter-gecmis {
    background: #f3f4f6;
    color: #6b7280;
    border-color: #e5e7eb;
}

.rez-filter-gecmis.active,
.rez-filter-gecmis:hover {
    background: #6b7280;
    color: #fff;
    border-color: #6b7280;
    box-shadow: 0 4px 12px rgba(107, 114, 128, 0.3);
}

/* ===== Rezervasyon DataTable ===== */
.rez-table-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8eaef;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    overflow: visible;
    padding: 0;
}

.rez-table-card .dataTables_wrapper {
    padding: 0;
}

/* ===== Şirket Araçları kart grid ===== */
.rez-table-card.rez-arac-card-wrap {
    padding: 20px;
}

.rez-arac-empty {
    text-align: center;
    padding: 48px 24px;
    color: #6b7280;
}
.rez-arac-empty i {
    font-size: 3rem;
    color: #d1d5db;
    display: block;
    margin-bottom: 12px;
}
.btn-arac-primary {
    background: #0d7085;
    color: #fff !important;
    border: none;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s ease;
}
.btn-arac-primary:hover {
    background: #0a5a6b;
    color: #fff;
}

.arac-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.arac-card {
    background: #fafbfc;
    border: 1px solid #e8eaef;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.arac-card:hover {
    border-color: rgba(13, 112, 133, 0.3);
    box-shadow: 0 4px 12px rgba(13, 112, 133, 0.08);
}

.arac-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding: 14px 16px;
    background: #fff;
    border-bottom: 1px solid #e8eaef;
}

.arac-plaka-badge {
    display: inline-block;
    background: rgba(13, 112, 133, 0.12);
    color: #0d7085;
    font-size: 0.9375rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 8px;
    letter-spacing: 0.02em;
}

.arac-card-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}
.arac-card-btn {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid #e0e3ef;
    background: #fff;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 1.1rem;
}
.arac-card-btn:hover {
    border-color: #0d7085;
    background: rgba(13, 112, 133, 0.08);
    color: #0d7085;
}
.arac-card-btn-delete:hover {
    border-color: #dc2626;
    background: rgba(220, 38, 38, 0.08);
    color: #dc2626;
}
.arac-card-btn-delete {
    cursor: pointer;
}

.arac-card-body {
    padding: 14px 16px;
}
.arac-card-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: #374151;
    padding: 6px 0;
}
.arac-card-row:first-child {
    padding-top: 0;
}
.arac-card-row i {
    color: #9ca3af;
    font-size: 1rem;
    flex-shrink: 0;
}

.rez-dt-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 18px 20px;
    border-bottom: 1px solid #f0f1f5;
    background: #fafbfc;
}

.rez-dt-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 20px;
    border-top: 1px solid #f0f1f5;
    background: #fafbfc;
}

.rez-table-card table.dataTable {
    border-collapse: collapse !important;
}

.rez-table-card table.dataTable thead th {
    background: #0d7085;
    color: #fff;
    font-weight: 600;
    font-size: 0.8125rem;
    padding: 14px 16px;
    border: none;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.rez-table-card table.dataTable thead th:first-child {
    padding-left: 20px;
}

.rez-table-card table.dataTable thead th:last-child {
    padding-right: 20px;
}

.rez-table-card table.dataTable tbody td {
    padding: 12px 16px;
    font-size: 0.875rem;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
    vertical-align: middle;
}

.rez-table-card table.dataTable tbody td:first-child {
    padding-left: 20px;
}

.rez-table-card table.dataTable tbody td:last-child {
    padding-right: 20px;
}

.rez-table-card table.dataTable tbody tr:hover {
    background-color: rgba(13, 112, 133, 0.04);
}

.rez-table-card table.dataTable tbody tr:last-child td {
    border-bottom: none;
}

.rez-no-badge {
    display: inline-block;
    background: rgba(13, 112, 133, 0.1);
    color: #0d7085;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.8125rem;
    white-space: nowrap;
}

.rez-tarih-cell {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.rez-tarih-cell span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8125rem;
    white-space: nowrap;
}

.rez-tarih-cell i {
    font-size: 0.9rem;
    color: #0d7085;
}

.rez-phone-link {
    color: #374151;
    text-decoration: none;
    white-space: nowrap;
}

.rez-phone-link:hover {
    color: #0d7085;
}

.rez-yon-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.rez-yon-tekyon {
    background: #e0f2fe;
    color: #0369a1;
}

.rez-yon-gidisdonus {
    background: #fef3cd;
    color: #856404;
}

/* Rezervasyon İşlem dropdown butonu */
.btn-rez-islem {
    background: #0d7085;
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 500;
    white-space: nowrap;
}
.btn-rez-islem:hover,
.btn-rez-islem:focus {
    background: #0a5a6b;
    color: #fff;
    border: none;
    box-shadow: 0 0 0 3px rgba(13, 112, 133, 0.25);
}
.rez-table-card .dropdown-menu {
    z-index: 1060;
    border-radius: 10px;
    border: 1px solid #e8eaef;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 6px 0;
}
.rez-table-card tbody td .dropdown.show {
    position: relative;
    z-index: 5;
}
.rez-table-card .dropdown-item {
    padding: 8px 14px;
    font-size: 0.875rem;
}
.rez-table-card .dropdown-item:hover {
    background: rgba(13, 112, 133, 0.08);
    color: #0d7085;
}

/* ===== Rezervasyon Detay Modal ===== */
.rez-detay-modal .modal-header {
    background: #0d7085;
    color: #fff;
    border-radius: 12px 12px 0 0;
    padding: 16px 20px;
}
.rez-detay-modal .modal-header .modal-title {
    font-size: 1rem;
    font-weight: 600;
}
.rez-detay-modal .modal-header .btn-close {
    filter: brightness(0) invert(1);
}
.rez-detay-modal .modal-content {
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}
.rez-detay-modal .modal-body {
    padding: 20px;
}
.rez-detay-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.rez-detay-row {
    display: flex;
    flex-direction: column;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f1f5;
}
.rez-detay-row:nth-last-child(-n+2) {
    border-bottom: none;
}
.rez-detay-label {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 4px;
}
.rez-detay-label i {
    color: #0d7085;
    margin-right: 4px;
}
.rez-detay-value {
    font-size: 0.9rem;
    color: #1f2937;
    font-weight: 500;
    word-break: break-word;
}
@media (max-width: 576px) {
    .rez-detay-grid {
        grid-template-columns: 1fr;
    }
    .rez-detay-row:last-child {
        border-bottom: none;
    }
}

/* ===== Şoför Ata Modal tip seçimi ===== */
.sa-tip-secim {
    display: flex;
    gap: 10px;
}
.sa-tip-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border: 2px solid #e0e3ef;
    border-radius: 10px;
    background: #fafbfc;
    color: #374151;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}
.sa-tip-btn:hover {
    border-color: #0d7085;
    color: #0d7085;
}
.sa-tip-btn.active {
    border-color: #0d7085;
    background: rgba(13, 112, 133, 0.08);
    color: #0d7085;
    font-weight: 600;
}
.sa-tip-btn i {
    font-size: 1.2rem;
}

/* DataTable form elemanları stili */
.rez-table-card .dataTables_filter input {
    border: 1.5px solid #e0e3ef;
    border-radius: 8px;
    padding: 7px 14px;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.2s;
    margin-left: 6px;
}

.rez-table-card .dataTables_filter input:focus {
    border-color: #0d7085;
    box-shadow: 0 0 0 3px rgba(13, 112, 133, 0.1);
}

.rez-table-card .dataTables_length select {
    border: 1.5px solid #e0e3ef;
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 0.875rem;
    outline: none;
}

.rez-table-card .dataTables_info {
    font-size: 0.8125rem;
    color: #6b7280;
}

.rez-table-card .dataTables_paginate .paginate_button {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8125rem;
    margin: 0 2px;
}

.rez-table-card .dataTables_paginate .paginate_button.current {
    background: #0d7085 !important;
    color: #fff !important;
    border: none;
}

.rez-table-card .dataTables_paginate .paginate_button:hover {
    background: rgba(13, 112, 133, 0.1) !important;
    color: #0d7085 !important;
    border: none;
}

/* Responsive child rows */
.rez-table-card table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control::before {
    background-color: #0d7085;
}

.rez-table-card table.dataTable > tbody > tr.child ul.dtr-details {
    width: 100%;
}

.rez-table-card table.dataTable > tbody > tr.child ul.dtr-details > li {
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
}

.report-area-home {
    padding: 20px 15px;
    padding-top: 0px;

}

.report-area-home .report-box {
    padding: 30px 25px;
    margin-top: 20px;
    border-radius: 10px;
    background-color: #0d7085;
}

.report-area-home .report-box h6{
    color: #fff;
}

.report-area-home .report-box p{
    color: #fff;
    margin: 0;
    font-size: 14px;
}

.graphic-area {
    padding: 20px 35px;
    padding-top: 15px;
}


/* Form Butonları Alanı */
.form-buttons-area {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* İptal Butonu */
.cancel-btn-df {
    background-color: #6b7280;
    color: #fff;
    border: 0;
    padding: 11px 32px;
    border-radius: 3px;
    outline: 0;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s ease;
    font-size: 15px;
}

.cancel-btn-df:hover {
    background-color: #4b5563;
    color: #fff;
    text-decoration: none;
}

/* Form Control Stilleri (Bootstrap uyumlu) */
.form-control, .form-select {
    display: block;
    width: 100%;
    height: 50px;
    padding: 15px 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #f5f6fa;
    background-clip: padding-box;
    border: 1px solid #ced4da54;
    outline: 0;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    margin-bottom: 15px;
    font-size: 15px;
}

.form-control:focus, .form-select:focus {
    border-color: #0d7085;
    box-shadow: 0 0 0 0.2rem rgba(13, 112, 133, 0.25);
    background-color: #f5f6fa;
}

.form-control[type="file"] {
    height: auto;
    padding: 8px 12px;
    cursor: pointer;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    color: #4b5565;
    font-size: 15px;
    font-weight: 500;
}

.form-label .text-danger {
    color: #dc3545;
}

/* Textarea için özel stil */
textarea.form-control {
    height: auto;
    min-height: 120px;
    resize: vertical;
}

@media (max-width: 768px) {
    .form-buttons-area {
        flex-direction: column;
    }
    
    .form-buttons-area .submit-btn-df,
    .form-buttons-area .cancel-btn-df {
        width: 100%;
    }
}

/* Card düzeltmeleri */
.card {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.card-body {
    padding: 1.25rem;
}

/* Buttons area düzeltmeleri */
.buttons-area {
    display: flex;
    gap: 8px;
    margin-top: auto;
    padding-top: 12px;
    width: 100%;
}

.buttons-area .edit-btn {
    flex: 1;
    text-align: center;
    border: none;
    border-radius: 5px;
    padding: 8px 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    background-color: #0d7085;
    color: #fff;
}

.buttons-area .edit-btn:hover {
    background-color: #0a5a6b;
    color: #fff;
    text-decoration: none;
}

.buttons-area form {
    flex: 1;
    display: flex;
}

.buttons-area .remove-btn {
    width: 100%;
    text-align: center;
    border: none;
    border-radius: 5px;
    padding: 8px 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 14px;
    background-color: #dc3545;
    color: #fff;
}

.buttons-area .remove-btn:hover {
    background-color: #c82333;
    color: #fff;
}

.rez-gd-cell {
    line-height: 1.6;
    white-space: nowrap;
}
.rez-gd-label {
    display: inline-block;
    font-weight: 600;
    font-size: 11px;
    color: #6c757d;
    min-width: 16px;
}
.dropdown-item.disabled {
    pointer-events: none;
    opacity: .55;
}
.rez-gd-durum-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
}
.rez-gd-durum-badges .badge-sm {
    font-size: 10px;
    padding: 2px 6px;
    font-weight: 500;
}
