/* ╔══════════════════════════════════════════╗
   ║  VPSROBOT — Panel Spesifik Stiller        ║
   ║  Otomatik oluşturuldu (deduplicated)      ║
   ╚══════════════════════════════════════════╝ */


/* ════════════════════════════════════════
   SHARED — KEYFRAME ANIMATIONS
   ════════════════════════════════════════ */

@keyframes fadeInUp {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes shimmer {
    0% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes floatBubble {
    0%, 100% { opacity: 0; }
    50% { opacity: 0; }
}

@keyframes slideInLeft {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes rowReveal {
    from { opacity: 0; }
    to { opacity: 1; }
}


/* ════════════════════════════════════════
   SHARED — PANEL LAYOUT
   ════════════════════════════════════════ */

body {
    background: #f8f9fb;
}


/* ════════════════════════════════════════
   SHARED — WELCOME BANNER
   ════════════════════════════════════════ */

.panel-welcome {
    background: #1a1a1e;
    padding: 32px 0 28px;
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

.panel-welcome .custom-container {
    max-width: 1100px;
}

.panel-welcome::before {
    display: none;
}

.panel-welcome::after {
    display: none;
}

.panel-welcome .avatar {
    width: 48px; height: 48px;
    border-radius: 10px;
    background: #2a2a30;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem; font-weight: 700; color: #ffd400;
    font-family: 'Audiowide', cursive;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: none;
    transition: all 0.15s ease;
}

.panel-welcome .avatar:hover {
    border-color: rgba(255,255,255,0.12);
}

.panel-welcome .greeting {
    color: #94a3b8; font-size: 0.78rem; font-weight: 400;
    text-transform: none; letter-spacing: 0;
}

.panel-welcome .username {
    color: #fff; font-size: 1.35rem; font-weight: 700; margin: 2px 0 2px;
    font-family: 'Audiowide', cursive; letter-spacing: 0.5px;
}

.panel-welcome .email {
    color: #64748b; font-size: 0.82rem;
}

.panel-balance-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 10px 16px;
    display: flex; align-items: center; gap: 16px;
    transition: all 0.15s ease;
}

.panel-balance-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.08);
}

.panel-balance-card .lbl {
    color: #94a3b8; font-size: 0.72rem; display: block; margin-bottom: 2px;
    text-transform: none; letter-spacing: 0;
}

.panel-balance-card .amount {
    color: #fff; font-size: 1.15rem; font-weight: 700;
    font-family: 'Audiowide', cursive;
}

.btn-add-balance {
    background: #ffd400; color: #1a1a1a;
    border: none; border-radius: 8px;
    font-weight: 600; font-size: 0.82rem;
    padding: 10px 22px; white-space: nowrap;
    transition: all 0.15s ease;
    display: inline-flex; align-items: center; gap: 6px;
    box-shadow: none;
    text-decoration: none;
}

.btn-add-balance:hover {
    background: #f2c300; color: #1a1a1a;
    box-shadow: none;
}

.btn-refresh {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
    color: #94a3b8; border-radius: 8px; width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.15s ease; flex-shrink: 0;
}

.btn-refresh:hover {
    background: rgba(255,255,255,0.08); color: #e2e8f0;
}


/* ════════════════════════════════════════
   SHARED — PANEL SUBNAV
   ════════════════════════════════════════ */

.panel-subnav {
    background: #fff;
    border-bottom: 1px solid #e8eaf0;
    position: sticky; top: 60px; z-index: 80;
    box-shadow: none;
}

.panel-subnav::after {
    display: none;
}

.panel-subnav .custom-container {
    display: flex; align-items: center; justify-content: center; overflow-x: auto;
    scrollbar-width: none;
}

.panel-subnav .custom-container::-webkit-scrollbar { display: none; }

.panel-nav-link {
    display: flex; align-items: center; gap: 7px;
    padding: 12px 14px; color: #6b7280; font-size: 0.82rem; font-weight: 500;
    text-decoration: none; white-space: nowrap;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    margin: 0 2px;
    transition: all 0.15s ease;
    position: relative;
}

.panel-nav-link:hover {
    color: #111827;
    background: transparent;
}

.panel-nav-link.active {
    color: #111827; font-weight: 600;
    background: transparent;
    border-radius: 0;
    border-bottom: 2px solid #ffd400;
}

.panel-nav-link svg { opacity: 0.4; transition: all 0.15s; }

.panel-nav-link.active svg,
.panel-nav-link:hover svg { opacity: 0.7; color: #374151; }


/* ════════════════════════════════════════
   SHARED — PANEL MAIN & CARD
   ════════════════════════════════════════ */

.panel-main { padding: 32px 0 56px; }

.panel-card {
    background: #fff; border-radius: 10px;
    border: 1px solid #e5e7eb;
    margin-bottom: 20px; overflow: hidden;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
    transition: all 0.15s ease;
    animation: fadeInUp 0.3s ease-out both;
}

.panel-card:hover {
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}


/* ════════════════════════════════════════
   SHARED — SIDEBAR MENU
   ════════════════════════════════════════ */

.sidebar-menu {
    background: #fff; border-radius: 10px;
    border: 1px solid #e5e7eb;
    overflow: hidden; margin-bottom: 20px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
    animation: fadeInUp 0.3s ease-out both;
}

.sidebar-menu-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 20px;
    color: #374151; font-size: 0.84rem; font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid #f5f7fa;
    transition: all 0.25s ease;
    position: relative;
    animation: none;
}

.sidebar-menu-item:last-child { border-bottom: none; }

.sidebar-menu-item:hover {
    color: #111827; background: #f9fafb;
    padding-left: 18px;
}

.sidebar-menu-item.active {
    color: #111827; font-weight: 600;
    background: #fafbfc;
    border-left: 2px solid #ffd400;
    padding-left: 16px;
}

.sidebar-menu-item.active::after {
    display: none;
}

.sidebar-menu-item svg { flex-shrink: 0; transition: none; }
.sidebar-menu-item:hover svg { transform: none; }
.sidebar-menu-item .menu-icon { margin-right: 10px; opacity: 0.4; transition: all 0.15s; }
.sidebar-menu-item.active .menu-icon { opacity: 0.7; color: #374151; }
.sidebar-menu-item:hover .menu-icon { opacity: 0.6; color: #374151; }


/* ════════════════════════════════════════
   SHARED — QUICK ACCESS BOX
   ════════════════════════════════════════ */
.quick-access-box {
    border-radius: 10px;
    background: #1e1e22;
    border: 1px solid #2e2e36;
    padding: 16px;
    margin-top: 12px;
}
.quick-access-title {
    font-size: 0.72rem;
    font-weight: 700;
    color: #ffd400;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Audiowide', cursive;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #2e2e36;
}
.quick-access-title svg { color: #ffd400; }
.quick-access-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 500;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.15s ease;
}
.quick-access-link:hover {
    background: rgba(255,212,0,0.08);
    color: #ffd400;
}
.quick-access-link svg {
    flex-shrink: 0;
    opacity: 0.7;
}
.quick-access-link:hover svg {
    opacity: 1;
    color: #ffd400;
}


/* ════════════════════════════════════════
   SHARED — CONTENT HEADER
   ════════════════════════════════════════ */

.content-header {
    padding: 18px 24px;
    border-bottom: 1px solid #f0f1f3;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 10px;
    background: #fff;
}

.content-title {
    font-size: 0.88rem; font-weight: 600; color: #111827;
    display: flex; align-items: center; gap: 8px;
    font-family: 'Poppins', sans-serif;
    text-transform: none; letter-spacing: 0;
}

.content-title svg { color: #9ca3af; }


/* ════════════════════════════════════════
   SHARED — STATUS TABS
   ════════════════════════════════════════ */

.status-tabs {
    display: flex; align-items: center; gap: 2px;
    flex-wrap: wrap;
}

.status-tab {
    padding: 6px 14px;
    font-size: 0.76rem; font-weight: 500;
    color: #6b7280;
    border-radius: 6px;
    background: transparent;
    border: none; cursor: pointer;
    transition: all 0.15s ease; text-decoration: none;
    position: relative;
}

.status-tab:hover { color: #111827; background: #f3f4f6; }

.status-tab.active {
    background: #f3f4f6; color: #111827;
    box-shadow: none;
    font-weight: 600;
}


/* ════════════════════════════════════════
   SHARED — INFO BAR & SEARCH
   ════════════════════════════════════════ */

.info-bar {
    padding: 10px 24px;
    display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid #f0f1f3;
    color: #9ca3af; font-size: 0.78rem;
    background: #fff;
}

.search-icon-btn {
    width: 34px; height: 34px; border-radius: 8px;
    background: #fff; border: 1px solid #e5e7eb;
    display: flex; align-items: center; justify-content: center;
    color: #9ca3af; cursor: pointer; transition: all 0.15s ease;
    box-shadow: none;
}

.search-icon-btn:hover {
    background: #f3f4f6; color: #374151; border-color: #d1d5db;
}


/* ════════════════════════════════════════
   SHARED — DATA TABLE
   ════════════════════════════════════════ */

.services-table {
    width: 100%; border-collapse: collapse;
}

.services-table thead th {
    padding: 12px 18px;
    font-size: 0.72rem; font-weight: 600;
    color: #9ca3af; text-transform: uppercase;
    letter-spacing: 0.3px;
    border-bottom: 1px solid #e5e7eb;
    background: #fff;
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
    transition: all 0.15s ease;
    font-family: 'Poppins', sans-serif;
}

.services-table thead th:hover { color: #374151; background: #fafbfc; }

.services-table thead th .sort-icon {
    display: inline-block; margin-left: 4px; vertical-align: middle;
    opacity: 0.3; transition: opacity 0.2s;
}

.services-table thead th:hover .sort-icon { opacity: 0.7; }

.services-table tbody td {
    padding: 14px 18px;
    font-size: 0.82rem; color: #374151;
    border-bottom: 1px solid #f3f4f6;
    vertical-align: middle;
    transition: none;
}

.services-table tbody tr {
    animation: none;
    position: relative;
}

.services-table tbody tr:nth-child(even) { background: transparent; }
.services-table tbody tr:hover { background: #fafbfc; }
.services-table tbody tr:last-child td { border-bottom: none; }

.td-product-name { font-weight: 700; color: #111827; font-size: 0.84rem; }
.td-product-meta { font-size: 0.72rem; color: #94a3b8; margin-top: 2px; }
.td-product-domain { font-size: 0.78rem; color: #6b7280; margin-top: 1px; font-weight: 500; }
.td-amount { font-weight: 700; color: #111827; font-family: 'Audiowide', cursive; font-size: 0.82rem; }


/* ════════════════════════════════════════
   SHARED — BADGES
   ════════════════════════════════════════ */

.badge-aktif, .badge-beklemede, .badge-askiya,
.badge-odendi, .badge-odenmedi {
    font-size: 0.7rem; font-weight: 600;
    border-radius: 20px; padding: 3px 10px 3px 20px;
    display: inline-block; position: relative;
    background: transparent; box-shadow: none;
    text-transform: none; letter-spacing: 0;
}

.badge-aktif::before, .badge-beklemede::before, .badge-askiya::before,
.badge-odendi::before, .badge-odenmedi::before {
    content: '';
    position: absolute; left: 7px; top: 50%; transform: translateY(-50%);
    width: 6px; height: 6px; border-radius: 50%;
}

.badge-aktif {
    color: #15803d; border: 1px solid #dcfce7;
}
.badge-aktif::before { background: #22c55e; }

.badge-beklemede {
    color: #92400e; border: 1px solid #fef3c7;
}
.badge-beklemede::before { background: #f59e0b; }

.badge-askiya {
    color: #dc2626; border: 1px solid #fee2e2;
}
.badge-askiya::before { background: #ef4444; }

.badge-odendi {
    color: #15803d; border: 1px solid #dcfce7;
}
.badge-odendi::before { background: #22c55e; }

.badge-odenmedi {
    color: #dc2626; border: 1px solid #fee2e2;
}
.badge-odenmedi::before { background: #ef4444; }

.btn-view-icon {
    padding: 8px 10px;
}


/* ════════════════════════════════════════
   SHARED — BTN-VIEW
   ════════════════════════════════════════ */

.btn-view {
    background: #fff; color: #374151;
    border: 1px solid #e5e7eb;
    border-radius: 6px; font-size: 0.75rem; font-weight: 600;
    padding: 7px 14px; display: inline-flex; align-items: center; gap: 5px;
    text-decoration: none; transition: all 0.15s ease;
    white-space: nowrap;
    box-shadow: none;
}

.btn-view:hover {
    background: #f9fafb; color: #111827;
    border-color: #d1d5db;
}


/* ════════════════════════════════════════
   SHARED — PAGINATION
   ════════════════════════════════════════ */

.table-footer {
    padding: 14px 24px;
    border-top: 1px solid #f0f1f3;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 10px;
    background: #fff;
}

.rows-select {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.78rem; color: #6b7280;
}

.rows-select select {
    padding: 5px 10px; border: 1px solid #e8eaf0; border-radius: 8px;
    font-size: 0.78rem; color: #374151; background: #fff;
    transition: all 0.2s;
    cursor: pointer;
}

.rows-select select:hover { border-color: #d1d5db; }

.rows-select select:focus {
    border-color: #111827; outline: none;
    box-shadow: 0 0 0 1px #111827;
}

.pagination-wrap {
    display: flex; align-items: center; gap: 4px;
}

.page-btn {
    padding: 6px 12px; border: 1px solid #e5e7eb;
    font-size: 0.78rem; font-weight: 500;
    color: #6b7280; background: #fff;
    text-decoration: none; transition: all 0.15s ease;
    border-radius: 6px;
}

.page-btn:hover {
    background: #f3f4f6; color: #111827;
    border-color: #d1d5db;
}

.page-btn.active {
    background: #111827; color: #fff; border-color: #111827;
    box-shadow: none;
    font-weight: 600;
}


/* ════════════════════════════════════════
   SHARED — RESPONSIVE
   ════════════════════════════════════════ */

@media (max-width: 991px) {
    .sidebar-col { display: none; }
}

@media (max-width: 767px) {
    .services-table { font-size: 0.78rem; }
    .services-table thead th,
    .services-table tbody td { padding: 10px 8px; }
    .panel-welcome .d-flex.align-items-center.gap-3 { flex-wrap: wrap; }
    .panel-balance-card { width: 100%; }
    body { background: #f8f9fb; }
}


/* ════════════════════════════════════════
   ACCOUNT
   ════════════════════════════════════════ */

.form-section {
    padding: 28px 28px 10px;
    animation: none;
}

.form-section + .form-section {
    border-top: 1px solid #f0f2f5;
}

.form-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.84rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: none;
    letter-spacing: 0;
}

.form-section-title svg { color: #9ca3af; flex-shrink: 0; }

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
    font-family: 'Poppins', sans-serif;
}

.form-group .form-control,
.form-group .form-select {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 0.82rem;
    color: #374151;
    background: #fff;
    transition: all 0.15s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group .form-control:focus,
.form-group .form-select:focus {
    border-color: #111827;
    box-shadow: 0 0 0 1px #111827;
    outline: none;
}

.form-group .form-control::placeholder {
    color: #b0b8c4;
    font-weight: 400;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f5f7fa;
}

.check-item:last-child { border-bottom: none; }

.check-item input[type="checkbox"] {
    width: 18px; height: 18px;
    border: 2px solid #d1d5db;
    border-radius: 5px;
    accent-color: #ffd400;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-item .check-label {
    font-size: 0.82rem;
    color: #374151;
    font-weight: 500;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
}

.check-item .check-desc {
    font-size: 0.74rem;
    color: #94a3b8;
    margin-top: 2px;
    line-height: 1.4;
}

.form-footer {
    padding: 20px 28px;
    border-top: 1px solid #f0f1f3;
    background: #fff;
}

.btn-save {
    background: #ffd400; color: #1a1a1a;
    border: none; border-radius: 8px;
    font-size: 0.82rem; font-weight: 600;
    padding: 10px 24px;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.15s ease;
    font-family: 'Poppins', sans-serif;
    box-shadow: none;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
    text-decoration: none;
}

.btn-save:hover {
    background: #f2c300;
    box-shadow: none;
}

@media (max-width: 767px) {
    .form-section { padding: 18px 16px 4px; }
    .form-footer { padding: 16px; }
}


/* ════════════════════════════════════════
   ANNOUNCEMENTS
   ════════════════════════════════════════ */

.announcement-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.announcement-card {
    padding: 28px 30px;
    border-bottom: 1px solid #f0f1f3;
    animation: none;
}

.announcement-card:last-child {
    border-bottom: none;
}

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

.announcement-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.announcement-date {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #94a3b8;
    white-space: nowrap;
    flex-shrink: 0;
}

.announcement-desc {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0 0 16px 0;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: #374151;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 8px 16px;
    text-decoration: none;
    transition: all 0.15s ease;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0;
}

.btn-read-more:hover {
    background: #f3f4f6;
    color: #111827;
    border-color: #d1d5db;
}


/* ════════════════════════════════════════
   DOMAINS-NEW
   ════════════════════════════════════════ */

.domain-search-section {
    padding: 28px 24px;
    text-align: center;
    border-bottom: 1px solid #f0f2f5;
}

.domain-search-section h3 {
    font-size: 1.1rem; font-weight: 600; color: #111827;
    margin-bottom: 6px;
    font-family: 'Poppins', sans-serif;
}

.domain-search-section p {
    font-size: 0.84rem; color: #6b7280;
    margin-bottom: 20px;
}

.domain-search-form {
    display: flex;
    max-width: 560px;
    margin: 0 auto;
    gap: 0;
}

.domain-search-form input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid #e0e3e8;
    border-right: none;
    border-radius: 8px 0 0 8px;
    font-size: 0.88rem;
    color: #111827;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.domain-search-form input::placeholder { color: #94a3b8; }

.domain-search-form input:focus {
    border-color: #111827;
    box-shadow: 0 0 0 1px #111827;
}

.domain-search-form button {
    background: #ffd400; color: #1a1a1a; border: 2px solid #ffd400;
    border-radius: 0 8px 8px 0;
    font-size: 0.84rem; font-weight: 700;
    padding: 14px 24px;
    cursor: pointer;
    transition: all 0.15s ease;
    display: inline-flex; align-items: center; gap: 6px;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}

.domain-search-form button:hover {
    background: #f2c300; border-color: #f2c300;
}

.tld-grid-title {
    font-size: 0.82rem; font-weight: 600; color: #6b7280;
    text-transform: none; letter-spacing: 0;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}

.tld-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.tld-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 20px 16px;
    text-align: center;
    transition: all 0.15s ease;
    position: relative;
    overflow: hidden;
}

.tld-card::before {
    display: none;
}

.tld-card:hover {
    border-color: #d1d5db;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.tld-card:hover::before { opacity: 0; }

.tld-name {
    font-size: 1.1rem; font-weight: 800; color: #111827;
    font-family: 'Audiowide', cursive;
    margin-bottom: 4px;
}

.tld-price {
    font-size: 0.78rem; color: #6b7280;
    margin-bottom: 12px;
}

.tld-price strong {
    color: #111827; font-family: 'Audiowide', cursive;
    font-size: 0.88rem;
}

.btn-tld-register {
    background: #111827; color: #fff;
    border: none;
    border-radius: 6px; font-size: 0.75rem; font-weight: 600;
    padding: 8px 20px; display: inline-flex; align-items: center; gap: 5px;
    text-decoration: none; transition: all 0.15s ease;
    box-shadow: none;
}

.btn-tld-register:hover {
    background: #374151; color: #fff;
}

@media (max-width: 991px) {
    .tld-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
    .tld-grid { grid-template-columns: 1fr; }
    .domain-search-form { flex-direction: column; }
    .domain-search-form input { border-right: 2px solid #e8eaf0; border-radius: 10px; }
    .domain-search-form button { border-radius: 10px; margin-top: 8px; }
}


/* ════════════════════════════════════════
   DOMAINS-TRANSFER
   ════════════════════════════════════════ */

.transfer-form-section {
    padding: 28px 24px;
}

.transfer-form-section h3 {
    font-size: 1.1rem; font-weight: 600; color: #111827;
    margin-bottom: 6px;
    font-family: 'Poppins', sans-serif;
}

.transfer-form-section > p {
    font-size: 0.84rem; color: #6b7280;
    margin-bottom: 24px;
}

.transfer-form-group {
    margin-bottom: 18px;
}

.transfer-form-group label {
    display: block;
    font-size: 0.78rem; font-weight: 600; color: #374151;
    margin-bottom: 6px;
    text-transform: none; letter-spacing: 0;
}

.transfer-form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e3e8;
    border-radius: 8px;
    font-size: 0.88rem;
    color: #111827;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.transfer-form-group input::placeholder { color: #94a3b8; }

.transfer-form-group input:focus {
    border-color: #111827;
    box-shadow: 0 0 0 1px #111827;
}

.btn-transfer {
    background: #ffd400; color: #1a1a1a; border: none;
    border-radius: 8px; font-size: 0.88rem; font-weight: 600;
    padding: 12px 28px;
    cursor: pointer;
    transition: all 0.15s ease;
    display: inline-flex; align-items: center; gap: 8px;
    box-shadow: none;
    font-family: 'Poppins', sans-serif;
    margin-top: 6px;
}

.btn-transfer:hover {
    background: #f2c300;
}

.transfer-info {
    background: #fafbfc;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 20px 22px;
    margin-top: 28px;
}

.transfer-info-title {
    font-size: 0.82rem; font-weight: 600; color: #111827;
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.transfer-info-title svg { color: #9ca3af; }

.transfer-info ul {
    list-style: none; padding: 0; margin: 0;
}

.transfer-info ul li {
    font-size: 0.82rem; color: #374151;
    padding: 6px 0;
    display: flex; align-items: flex-start; gap: 8px;
    line-height: 1.5;
}

.transfer-info ul li::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #ffd400;
    flex-shrink: 0;
    margin-top: 7px;
}


/* ════════════════════════════════════════
   INDEX (Dashboard)
   ════════════════════════════════════════ */

@keyframes progressFill {
    from { width: 0 !important; }
}

@keyframes pulse {
    0%, 100% { transform: none; }
    50% { transform: none; }
}

@keyframes glowPulse {
    0%, 100% { box-shadow: none; }
    50% { box-shadow: none; }
}

.panel-stat-card {
    background: #fff; border-radius: 12px;
    border: 1px solid #eaedf2;
    padding: 18px 22px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px;
    transition: all 0.15s ease;
    animation: fadeInUp 0.3s ease-out both;
    position: relative;
    overflow: hidden;
}

.panel-stat-card::before {
    display: none;
}

.col-md-4:nth-child(1) .panel-stat-card::before,
.col-md-4:nth-child(2) .panel-stat-card::before,
.col-md-4:nth-child(3) .panel-stat-card::before { display: none; }

.panel-stat-card:hover {
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.stat-icon {
    width: 42px; height: 42px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: none;
}

.col-md-4:nth-child(1) .stat-icon { background: #fef9e7; }
.col-md-4:nth-child(2) .stat-icon { background: #eef6ff; }
.col-md-4:nth-child(3) .stat-icon { background: #ecfdf5; }
.panel-stat-card:hover .stat-icon { transform: none; }

.stat-label {
    color: #9ca3af; font-size: 0.75rem;
    text-transform: none; letter-spacing: 0;
}

.stat-value {
    color: #111827; font-size: 1.05rem; font-weight: 700; margin-top: 2px;
    font-family: 'Audiowide', cursive; letter-spacing: 0.3px;
}

.btn-see-all {
    font-size: 0.73rem; font-weight: 500; color: #6b7280;
    background: transparent; border: none; border-radius: 6px;
    padding: 5px 10px; white-space: nowrap; text-decoration: none;
    transition: all 0.15s ease;
}

.btn-see-all:hover {
    background: #f3f4f6; color: #111827;
    box-shadow: none;
}

.col-lg-4 .panel-card:nth-child(1) { animation-delay: 0.15s; }
.col-lg-4 .panel-card:nth-child(2) { animation-delay: 0.25s; }
.col-lg-4 .panel-card:nth-child(3) { animation-delay: 0.35s; }
.col-lg-4 .panel-card:nth-child(4) { animation-delay: 0.45s; }
.col-lg-8 .panel-card:nth-child(1) { animation-delay: 0.2s; }
.col-lg-8 .panel-card:nth-child(2) { animation-delay: 0.3s; }
.col-lg-8 .panel-card:nth-child(3) { animation-delay: 0.4s; }

.panel-card-header {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f1f3;
    display: flex; align-items: center; justify-content: space-between;
    gap: 8px;
    background: #fff;
}

.panel-card-title {
    font-size: 0.84rem; font-weight: 600; color: #111827;
    display: flex; align-items: center; gap: 8px;
    font-family: 'Poppins', sans-serif;
    text-transform: none; letter-spacing: 0;
}

.panel-card-title svg { color: #9ca3af; }

.panel-card-body { padding: 0; }

.service-row,
.domain-row,
.invoice-row {
    padding: 14px 20px;
    border-bottom: 1px solid #f5f7fa;
    display: flex; align-items: center; gap: 14px;
    position: relative;
    transition: all 0.25s ease;
}

.service-row:last-child,
.domain-row:last-child,
.invoice-row:last-child {
    border-bottom: none;
}

.service-row:hover,
.domain-row:hover,
.invoice-row:hover {
    background: transparent;
}

.service-icon {
    width: 38px; height: 38px; border-radius: 10px;
    background: #fef9e7;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: none;
    box-shadow: none;
}

.service-row:hover .service-icon,
.domain-row:hover .service-icon { transform: none; }

.service-name { font-size: 0.83rem; font-weight: 600; color: #111827; }
.service-meta { font-size: 0.75rem; color: #94a3b8; }
.service-domain { font-size: 0.8rem; font-weight: 600; color: #374151; }

.badge-gecikti {
    background: transparent; color: #dc2626;
    font-size: 0.7rem; font-weight: 600;
    border-radius: 20px; padding: 3px 10px 3px 20px;
    border: 1px solid #fee2e2;
    box-shadow: none;
    text-transform: none; letter-spacing: 0;
    display: inline-block; position: relative;
}
.badge-gecikti::before {
    content: '';
    position: absolute; left: 7px; top: 50%; transform: translateY(-50%);
    width: 6px; height: 6px; border-radius: 50%;
    background: #ef4444;
}

.days-left { font-size: 0.72rem; font-weight: 600; color: #f59e0b; }
.days-left.ok { color: #22c55e; }
.days-left.warn { color: #ef4444; animation: pulse 2s ease-in-out infinite; }

.btn-manage {
    background: #ffd400; color: #1a1a1a; border: none;
    border-radius: 6px; font-size: 0.75rem; font-weight: 600;
    padding: 7px 14px; white-space: nowrap;
    display: inline-flex; align-items: center; gap: 5px;
    transition: all 0.15s ease; text-decoration: none;
    box-shadow: none;
}

.btn-manage:hover {
    background: #f2c300; color: #1a1a1a;
}

.btn-detail {
    background: #f3f4f6; color: #374151; border: none;
    border-radius: 6px; font-size: 0.75rem; font-weight: 600;
    padding: 7px 12px; display: inline-flex; align-items: center;
    transition: all 0.15s ease; text-decoration: none;
}

.btn-detail:hover {
    background: #e5e7eb; color: #111827;
}

.service-progress {
    height: 3px; background: #f0f1f3; border-radius: 3px; overflow: hidden;
    margin-top: 6px;
    box-shadow: none;
}

.service-progress-fill {
    height: 100%; border-radius: 4px;
    transition: width 0.3s;
    animation: progressFill 1.2s ease-out;
}

.service-row:nth-child(1) .service-progress-fill { background: #22c55e; }
.service-row:nth-child(2) .service-progress-fill { background: #3b82f6; }
.service-row:nth-child(3) .service-progress-fill { background: #f59e0b; }
.domain-row .service-progress-fill { background: #8b5cf6; }

.promo-card-dark {
    border-radius: 10px;
    background: #1e1e22;
    border: 1px solid #2e2e36;
    padding: 22px;
    position: relative; overflow: hidden;
    margin-bottom: 20px;
    animation: fadeInUp 0.3s ease-out both;
    transition: all 0.15s ease;
}

.promo-card-dark:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.promo-card-dark::before {
    display: none;
}

.promo-card-dark::after {
    display: none;
}

.promo-card-dark .promo-badge {
    font-size: 0.65rem; font-weight: 700; color: #ffd400;
    background: rgba(255,212,0,0.15); border-radius: 6px;
    padding: 3px 10px; display: inline-block; margin-bottom: 10px;
    text-transform: uppercase; letter-spacing: 1px;
    font-family: 'Audiowide', cursive;
}

.promo-card-dark h4 {
    color: #fff; font-size: 1.05rem; font-weight: 700; margin-bottom: 8px;
    font-family: 'Audiowide', cursive;
}

.promo-card-dark p {
    color: #94a3b8; font-size: 0.8rem; line-height: 1.5; margin-bottom: 16px;
}

.promo-card-dark .btn-promo {
    background: #ffd400; color: #1a1a1a; border: none;
    border-radius: 6px; font-size: 0.8rem; font-weight: 600;
    padding: 9px 18px; display: inline-flex; align-items: center; gap: 6px;
    text-decoration: none; transition: all 0.15s ease;
    box-shadow: none;
    position: relative; z-index: 1;
}

.promo-card-dark .btn-promo:hover {
    background: #f2c300;
}

.promo-card-light {
    border-radius: 10px;
    background: #fffef8;
    border: 1px solid #f0eacc;
    padding: 22px;
    position: relative; overflow: hidden;
    margin-bottom: 20px;
    animation: fadeInUp 0.3s ease-out both;
    transition: all 0.15s ease;
}

.promo-card-light:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.promo-card-light::before {
    display: none;
}

.promo-card-light .promo-title {
    color: #92400e; font-size: 0.72rem; font-weight: 700; margin-bottom: 6px;
    text-transform: uppercase; letter-spacing: 1px;
}

.promo-card-light h4 {
    color: #1a1a1a; font-size: 1.1rem; font-weight: 800; margin-bottom: 6px;
    font-family: 'Audiowide', cursive;
}

.promo-card-light p {
    color: #6b7280; font-size: 0.78rem; line-height: 1.5; margin-bottom: 14px;
}

.promo-card-light .btn-promo {
    background: #1a1a1a; color: #ffd400; border: none;
    border-radius: 6px; font-size: 0.8rem; font-weight: 600;
    padding: 9px 18px; display: inline-flex; align-items: center; gap: 6px;
    text-decoration: none; transition: all 0.15s ease;
    box-shadow: none;
    position: relative; z-index: 1;
}

.promo-card-light .btn-promo:hover {
    background: #282828;
}

.customer-info-item {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 12px 20px; border-bottom: 1px solid #f5f7fa;
    transition: all 0.2s ease;
}

.customer-info-item:hover { background: #fafbfc; }
.customer-info-item:last-child { border-bottom: none; }

.ci-icon {
    color: #9ca3af; flex-shrink: 0; margin-top: 2px;
    width: 28px; height: 28px; border-radius: 8px;
    background: #f3f4f6;
    display: flex; align-items: center; justify-content: center;
}

.ci-label {
    font-size: 0.7rem; color: #9ca3af; display: block; margin-bottom: 2px;
    text-transform: none; letter-spacing: 0;
}

.ci-value { font-size: 0.83rem; color: #111827; font-weight: 500; }

.empty-state {
    padding: 36px 18px; text-align: center;
    color: #94a3b8; font-size: 0.82rem;
}

.empty-state svg {
    margin-bottom: 10px; opacity: 0.2;
    color: #9ca3af;
}

.empty-state p { margin: 0; }

.invoice-no {
    font-size: 0.8rem; font-weight: 700; color: #111827;
    font-family: 'Audiowide', cursive; letter-spacing: 0.3px;
}

.invoice-desc { font-size: 0.73rem; color: #94a3b8; margin-top: 1px; }

.invoice-date-label {
    font-size: 0.68rem; color: #9ca3af;
    text-transform: none; letter-spacing: 0;
}

.invoice-date-val { font-size: 0.78rem; font-weight: 600; color: #374151; }

.invoice-amount {
    font-size: 0.9rem; font-weight: 700; color: #111827;
    text-align: right; font-family: 'Audiowide', cursive;
}


/* ════════════════════════════════════════
   PAYMENTS-AUTO
   ════════════════════════════════════════ */

.auto-pay-section {
    padding: 28px 24px;
}

.auto-pay-description {
    margin-bottom: 28px;
}

.auto-pay-description h3 {
    font-size: 1.1rem; font-weight: 600; color: #111827;
    margin-bottom: 6px;
    font-family: 'Poppins', sans-serif;
}

.auto-pay-description p {
    font-size: 0.84rem; color: #6b7280;
    line-height: 1.6;
}

.saved-cards-title {
    font-size: 0.78rem; font-weight: 600; color: #374151;
    text-transform: none; letter-spacing: 0;
    margin-bottom: 12px;
}

.saved-cards {
    margin-bottom: 28px;
}

.empty-cards-state {
    background: #fafbfc;
    border: 2px dashed #e8eaf0;
    border-radius: 12px;
    padding: 40px 24px;
    text-align: center;
}

.empty-cards-icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    background: #f0f2f5;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    color: #94a3b8;
}

.empty-cards-text {
    font-size: 0.92rem; font-weight: 700; color: #374151;
    margin-bottom: 4px;
}

.empty-cards-subtext {
    font-size: 0.82rem; color: #94a3b8;
    margin-bottom: 18px;
}

.btn-add-card {
    background: #ffd400; color: #1a1a1a; border: none;
    border-radius: 8px; font-size: 0.84rem; font-weight: 600;
    padding: 10px 24px;
    cursor: pointer;
    transition: all 0.15s ease;
    display: inline-flex; align-items: center; gap: 6px;
    box-shadow: none;
    font-family: 'Poppins', sans-serif;
}

.btn-add-card:hover {
    background: #f2c300;
    box-shadow: none;
}

.auto-pay-info {
    background: #fafbfc;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 20px 22px;
}

.auto-pay-info-title {
    font-size: 0.82rem; font-weight: 600; color: #111827;
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.auto-pay-info-title svg { color: #9ca3af; }

.auto-pay-info ul {
    list-style: none; padding: 0; margin: 0;
}

.auto-pay-info ul li {
    font-size: 0.82rem; color: #374151;
    padding: 6px 0;
    display: flex; align-items: flex-start; gap: 8px;
    line-height: 1.5;
}

.auto-pay-info ul li::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #ffd400;
    flex-shrink: 0;
    margin-top: 7px;
}


/* ════════════════════════════════════════
   PAYMENTS-BALANCE
   ════════════════════════════════════════ */

.balance-section {
    padding: 28px 24px;
}

.balance-info-card {
    background: #1e1e22;
    border-radius: 10px;
    padding: 24px 28px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}

.balance-info-card::after {
    display: none;
}

.balance-label {
    font-size: 0.75rem; color: #94a3b8;
    text-transform: none; letter-spacing: 0;
    margin-bottom: 4px;
}

.balance-amount {
    font-size: 1.8rem; font-weight: 700; color: #ffd400;
    font-family: 'Audiowide', cursive;
}

.balance-form-group {
    margin-bottom: 16px;
}

.balance-form-group label {
    display: block;
    font-size: 0.78rem; font-weight: 600; color: #374151;
    margin-bottom: 6px;
    text-transform: none; letter-spacing: 0;
}

.balance-input-wrapper {
    position: relative;
}

.balance-input-wrapper input {
    width: 100%;
    padding: 14px 60px 14px 18px;
    border: 2px solid #e0e3e8;
    border-radius: 8px;
    font-size: 1.1rem; font-weight: 700;
    color: #111827;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Audiowide', cursive;
}

.balance-input-wrapper input::placeholder { color: #d1d5db; }

.balance-input-wrapper input:focus {
    border-color: #111827;
    box-shadow: 0 0 0 1px #111827;
}

.balance-currency {
    position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
    font-size: 0.88rem; font-weight: 700; color: #6b7280;
    font-family: 'Audiowide', cursive;
}

.quick-amounts {
    display: flex; gap: 10px; margin-bottom: 28px; flex-wrap: wrap;
}

.quick-amount-btn {
    padding: 8px 20px;
    border: 2px solid #e8eaf0;
    border-radius: 8px;
    background: #fff;
    font-size: 0.82rem; font-weight: 700; color: #374151;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'Audiowide', cursive;
}

.quick-amount-btn:hover {
    border-color: #d1d5db;
    background: #f3f4f6;
    color: #111827;
}

.payment-methods-title {
    font-size: 0.78rem; font-weight: 600; color: #374151;
    text-transform: none; letter-spacing: 0;
    margin-bottom: 12px;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.payment-method-card {
    border: 2px solid #e8eaf0;
    border-radius: 12px;
    padding: 18px 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method-card:hover {
    border-color: #d1d5db;
    background: #f9fafb;
}

.payment-method-card.selected {
    border-color: #111827;
    background: #fafbfc;
    box-shadow: 0 0 0 1px #111827;
}

.payment-method-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: #f8f9fa;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 10px;
    color: #374151;
    transition: all 0.3s;
}

.payment-method-card.selected .payment-method-icon {
    background: #ffd400;
    color: #1a1a1a;
}

.payment-method-name {
    font-size: 0.82rem; font-weight: 700; color: #111827;
    margin-bottom: 2px;
}

.payment-method-desc {
    font-size: 0.72rem; color: #94a3b8;
}

.btn-load-balance {
    background: #ffd400; color: #1a1a1a; border: none;
    border-radius: 8px; font-size: 0.88rem; font-weight: 600;
    padding: 12px 28px; width: 100%;
    cursor: pointer;
    transition: all 0.15s ease;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    box-shadow: none;
    font-family: 'Poppins', sans-serif;
}

.btn-load-balance:hover {
    background: #f2c300;
}

@media (max-width: 991px) {
    .payment-methods { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════
   SERVICE-HOSTING (Detail Page)
   ════════════════════════════════════════ */

@keyframes progressFill-stroke {
    from { stroke-dashoffset: 251; }
}

.detail-sidebar {
    background: #fff; border-radius: 10px;
    border: 1px solid #e5e7eb;
    overflow: hidden; margin-bottom: 20px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
    animation: fadeInUp 0.3s ease-out both;
}

.detail-sidebar-header {
    padding: 18px 20px;
    border-bottom: 1px solid #f0f1f3;
    display: flex; align-items: center; justify-content: space-between;
    background: #fff;
}

.detail-sidebar-header .detail-title {
    font-size: 0.82rem; font-weight: 600; color: #111827;
    font-family: 'Poppins', sans-serif;
    text-transform: none; letter-spacing: 0;
}

.detail-sidebar-header .detail-subtitle {
    font-size: 0.72rem; color: #94a3b8; font-weight: 400;
    display: block; margin-top: 1px;
    text-transform: none; letter-spacing: 0;
}

.detail-info-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 11px 20px;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.8rem;
    animation: none;
}

.detail-info-row:last-child { border-bottom: none; }

.detail-info-row .info-label {
    color: #6b7280; font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.detail-info-row .info-value {
    color: #111827; font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-align: right;
}

/* animation delays removed */

.detail-actions {
    padding: 14px 20px;
    border-top: 1px solid #f0f2f5;
}

.detail-action-link {
    display: flex; align-items: center; gap: 8px;
    padding: 9px 0;
    color: #374151; font-size: 0.8rem; font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
    font-family: 'Poppins', sans-serif;
}

.detail-action-link:hover { color: #111827; padding-left: 0; }
.detail-action-link svg { color: #9ca3af; flex-shrink: 0; transition: none; }
.detail-action-link:hover svg { transform: none; color: #6b7280; }

.detail-buttons {
    padding: 16px 20px;
    display: flex; flex-direction: column; gap: 10px;
    border-top: 1px solid #f0f2f5;
}

.btn-panel-info {
    background: #ffd400; color: #1a1a1a;
    border: none; border-radius: 8px;
    font-size: 0.82rem; font-weight: 600;
    padding: 10px 16px; width: 100%;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    transition: all 0.15s ease;
    font-family: 'Poppins', sans-serif;
    box-shadow: none;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
    text-decoration: none;
}

.btn-panel-info:hover {
    background: #f2c300; color: #1a1a1a;
}

.btn-cancel-request {
    background: #282828; color: #fff;
    border: none; border-radius: 8px;
    font-size: 0.82rem; font-weight: 600;
    padding: 10px 16px; width: 100%;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    transition: all 0.15s ease;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
    text-decoration: none;
}

.btn-cancel-request:hover {
    background: #1a1a1a; color: #fff;
}

.detail-tabs-wrapper {
    padding: 14px 24px;
    border-bottom: 1px solid #e5e7eb;
    display: flex; align-items: center; gap: 2px;
    flex-wrap: wrap;
    background: #fff;
    overflow-x: auto;
    scrollbar-width: none;
}

.detail-tabs-wrapper::-webkit-scrollbar { display: none; }

.detail-tab {
    padding: 8px 18px;
    font-size: 0.78rem; font-weight: 600;
    color: #6b7280;
    border-radius: 8px;
    background: transparent;
    border: none; cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}

.detail-tab:hover { color: #111827; background: #f3f4f6; }

.detail-tab.active {
    background: #f3f4f6; color: #111827;
    box-shadow: none;
    font-weight: 600;
}

.detail-section {
    padding: 24px 28px;
    animation: none;
}

.detail-section + .detail-section {
    border-top: 1px solid #f0f2f5;
}

.detail-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.84rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: none;
    letter-spacing: 0;
}

.detail-section-title svg { color: #9ca3af; flex-shrink: 0; }

.package-info-grid {
    display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
}

.package-info-item {
    display: flex; flex-direction: column; gap: 2px;
    min-width: 140px;
}

.package-info-item .pkg-label {
    font-size: 0.72rem; color: #9ca3af; font-weight: 500;
    text-transform: none; letter-spacing: 0;
}

.package-info-item .pkg-value {
    font-size: 0.86rem; color: #111827; font-weight: 600;
}

.btn-site-view {
    background: #ffd400; color: #1a1a1a;
    border: none; border-radius: 8px;
    font-size: 0.76rem; font-weight: 700;
    padding: 8px 16px;
    display: inline-flex; align-items: center; gap: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

.btn-site-view:hover {
    background: #f2c300; color: #1a1a1a;
}

.btn-whois {
    background: transparent; color: #374151;
    border: 1px solid #e5e7eb; border-radius: 6px;
    font-size: 0.76rem; font-weight: 600;
    padding: 8px 16px;
    display: inline-flex; align-items: center; gap: 6px;
    transition: all 0.15s ease;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

.btn-whois:hover {
    border-color: #d1d5db; color: #111827;
    background: #f3f4f6;
}

.usage-circles {
    display: flex; gap: 24px; flex-wrap: wrap;
}

.usage-circle-card {
    flex: 1; min-width: 200px;
    background: #fafbfc; border: 1px solid #f0f1f3;
    border-radius: 10px; padding: 20px;
    text-align: center;
    transition: all 0.15s ease;
}

.usage-circle-card:hover {
    border-color: #d1d5db;
    box-shadow: none;
}

.usage-circle {
    width: 120px; height: 120px;
    margin: 0 auto 12px;
    position: relative;
}

.usage-circle svg {
    width: 120px; height: 120px;
    transform: rotate(-90deg);
}

.usage-circle .circle-bg {
    fill: none; stroke: #e8eaf0; stroke-width: 8;
}

.usage-circle .circle-fill {
    fill: none; stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 251;
    stroke-dashoffset: 251;
    transition: stroke-dashoffset 1.5s ease-out;
}

.usage-circle .circle-fill.green { stroke: #22c55e; }
.usage-circle .circle-fill.blue { stroke: #3b82f6; }

.usage-circle-percent {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.3rem; font-weight: 700; color: #111827;
    font-family: 'Audiowide', cursive;
}

.usage-circle-label {
    font-size: 0.78rem; font-weight: 600; color: #374151;
    margin-bottom: 4px;
}

.usage-circle-detail {
    font-size: 0.72rem; color: #94a3b8;
}

.usage-update {
    font-size: 0.72rem; color: #94a3b8;
    margin-top: 16px; text-align: center;
    display: flex; align-items: center; justify-content: center; gap: 6px;
}

.shortcuts-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.shortcut-card {
    background: #fafbfc;
    border: 1px solid #f0f1f3;
    border-radius: 10px;
    padding: 16px 10px;
    text-align: center;
    text-decoration: none;
    transition: all 0.15s ease;
    display: flex; flex-direction: column;
    align-items: center; gap: 8px;
}

.shortcut-card:hover {
    border-color: #d1d5db;
    background: #f9fafb;
}

.shortcut-card .sc-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: #f3f4f6;
    display: flex; align-items: center; justify-content: center;
    box-shadow: none;
    transition: all 0.15s ease;
}

.shortcut-card:hover .sc-icon {
    background: #e5e7eb;
    box-shadow: none;
}

.shortcut-card .sc-icon svg { color: #6b7280; transition: none; }
.shortcut-card:hover .sc-icon svg { color: #374151; }

.shortcut-card .sc-label {
    font-size: 0.7rem; font-weight: 600; color: #374151;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}

.quick-email-form {
    background: #fafbfc;
    border: 1px solid #f0f2f5;
    border-radius: 12px;
    padding: 20px;
}

.quick-email-form .form-row {
    display: flex; gap: 10px; flex-wrap: wrap; align-items: flex-end;
}

.quick-email-form .form-group {
    flex: 1; min-width: 140px;
}

.quick-email-form label {
    display: block;
    font-size: 0.74rem; font-weight: 600; color: #374151;
    margin-bottom: 6px;
    font-family: 'Poppins', sans-serif;
}

.quick-email-form .form-control,
.quick-email-form .form-select {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.82rem;
    color: #374151;
    background: #fff;
    transition: all 0.15s ease;
    font-family: 'Poppins', sans-serif;
}

.quick-email-form .form-control:focus,
.quick-email-form .form-select:focus {
    border-color: #111827;
    box-shadow: 0 0 0 1px #111827;
    outline: none;
}

.btn-create-email {
    background: #ffd400; color: #1a1a1a;
    border: none; border-radius: 8px;
    font-size: 0.8rem; font-weight: 600;
    padding: 10px 20px;
    display: inline-flex; align-items: center; gap: 6px;
    transition: all 0.15s ease;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    cursor: pointer;
}

.btn-create-email:hover {
    background: #f2c300;
}

.other-services {
    display: flex; gap: 14px; flex-wrap: wrap;
}

.other-service-card {
    flex: 1; min-width: 200px;
    background: #fafbfc;
    border: 1px solid #f0f1f3;
    border-radius: 10px;
    padding: 18px;
    display: flex; align-items: center; gap: 14px;
    transition: all 0.15s ease;
    text-decoration: none;
}

.other-service-card:hover {
    border-color: #d1d5db;
    box-shadow: none;
}

.other-service-card .os-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: #f3f4f6;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: none;
}

.other-service-card .os-icon svg { color: #6b7280; }

.other-service-card .os-name {
    font-size: 0.82rem; font-weight: 700; color: #111827;
    font-family: 'Poppins', sans-serif;
}

.other-service-card .os-price {
    font-size: 0.72rem; color: #94a3b8; margin-top: 2px;
}

.other-service-card .os-price strong {
    color: #ffd400; font-family: 'Audiowide', cursive;
}

.btn-order-sm {
    background: transparent; color: #374151;
    border: 1px solid #e8eaf0; border-radius: 8px;
    font-size: 0.72rem; font-weight: 600;
    padding: 6px 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    margin-left: auto;
}

.btn-order-sm:hover {
    border-color: #d1d5db; background: #f3f4f6; color: #111827;
}

@media (max-width: 991px) {
    .shortcuts-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
    .shortcuts-grid { grid-template-columns: repeat(2, 1fr); }
    .detail-section { padding: 18px 16px; }
    .usage-circles { flex-direction: column; }
}


/* ════════════════════════════════════════
   SERVICES-ORDER
   ════════════════════════════════════════ */

.order-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.order-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 28px;
    text-align: center;
    transition: all 0.15s ease;
    position: relative;
    overflow: hidden;
}

.order-card::before {
    display: none;
}

.order-card:hover {
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    border-color: #d1d5db;
}

.order-card-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: #fef9e7;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    color: #b8860b;
    box-shadow: none;
}

.order-card-name {
    font-size: 0.88rem; font-weight: 600; color: #111827;
    margin-bottom: 4px;
    font-family: 'Poppins', sans-serif;
}

.order-card-desc {
    font-size: 0.78rem; color: #6b7280;
    margin-bottom: 12px;
}

.order-card-price {
    font-size: 0.78rem; color: #94a3b8;
    margin-bottom: 16px;
}

.order-card-price strong {
    color: #111827; font-family: 'Audiowide', cursive;
    font-size: 0.88rem;
}

.btn-order {
    background: #111827; color: #fff;
    border: none;
    border-radius: 6px; font-size: 0.78rem; font-weight: 600;
    padding: 9px 20px; display: inline-flex; align-items: center; gap: 5px;
    text-decoration: none; transition: all 0.15s ease;
    box-shadow: none;
}

.btn-order:hover {
    background: #374151; color: #fff;
    box-shadow: none;
}

@media (max-width: 991px) {
    .order-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
    .order-grid { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════
   SUPPORT
   ════════════════════════════════════════ */

.badge-kapandi {
    background: transparent; color: #6b7280;
    font-size: 0.7rem; font-weight: 600;
    border-radius: 20px; padding: 3px 10px 3px 20px; display: inline-block;
    border: 1px solid #e5e7eb;
    box-shadow: none;
    text-transform: none; letter-spacing: 0;
    position: relative;
}
.badge-kapandi::before {
    content: '';
    position: absolute; left: 7px; top: 50%; transform: translateY(-50%);
    width: 6px; height: 6px; border-radius: 50%;
    background: #94a3b8;
}

.btn-new-ticket {
    background: #ffd400; color: #1a1a1a;
    border: none; border-radius: 8px;
    font-size: 0.8rem; font-weight: 600;
    padding: 10px 20px;
    display: inline-flex; align-items: center; gap: 6px;
    text-decoration: none;
    transition: all 0.15s ease;
    white-space: nowrap;
    box-shadow: none;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0;
}

.btn-new-ticket:hover {
    background: #f2c300; color: #1a1a1a;
    box-shadow: none;
}


/* ════════════════════════════════════════
   SUPPORT — NEW TICKET FORM
   ════════════════════════════════════════ */

.btn-back-tickets {
    color: #6b7280;
    font-size: 0.82rem; font-weight: 500;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px;
    transition: color 0.15s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-back-tickets:hover { color: #111827; }

.ticket-textarea {
    min-height: 180px;
    resize: vertical;
    line-height: 1.7;
}

.ticket-file-upload {
    border: 2px dashed #e5e7eb;
    border-radius: 10px;
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.15s ease;
    display: flex; flex-direction: column;
    align-items: center; gap: 8px;
    font-size: 0.82rem; color: #6b7280;
    font-family: 'Poppins', sans-serif;
}

.ticket-file-upload:hover {
    border-color: #d1d5db;
    background: #fafbfc;
}

.ticket-file-upload svg { color: #9ca3af; }

.ticket-file-hint {
    font-size: 0.72rem; color: #9ca3af;
}


/* ════════════════════════════════════════
   DASHBOARD — WIDGET KARTLARI
   ════════════════════════════════════════ */

/* Kompakt üst satır kartları */
.dash-row-compact .panel-card-header {
    padding: 10px 16px;
}

.dash-row-compact .panel-card-body {
    padding: 8px 16px 10px;
}

.dash-row-compact .customer-info-item {
    padding: 6px 0;
    gap: 10px;
}

.dash-row-compact .ci-icon {
    width: 28px;
    height: 28px;
}

.dash-row-compact .ci-icon svg {
    width: 12px;
    height: 12px;
}

.dash-row-compact .ci-label {
    font-size: 0.68rem;
}

.dash-row-compact .ci-value {
    font-size: 0.78rem;
}

.dash-row-compact .dash-widget-footer {
    padding: 10px 16px;
}

.dash-row-compact .empty-state {
    padding: 24px 16px !important;
}

.dash-row-compact .empty-state svg {
    width: 36px !important;
    height: 36px !important;
    margin-bottom: 8px !important;
}

.dash-row-compact .empty-state p:first-of-type {
    font-size: 0.78rem !important;
}

.dash-row-compact .empty-state p:last-of-type {
    font-size: 0.72rem !important;
}

.dash-row-compact .services-table th,
.dash-row-compact .services-table td {
    padding: 8px 12px;
    font-size: 0.76rem;
}

.dash-row-compact .btn-save,
.dash-row-compact .btn-view {
    font-size: 0.75rem !important;
    padding: 8px 16px !important;
}

/* Kart flex layout (equal-height) */
.dash-widget {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.dash-widget .panel-card-body {
    flex: 1;
}

/* Kart alt buton alanı */
.dash-widget-footer {
    padding: 14px 20px;
    border-top: 1px solid #f0f1f3;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Kart header içi filtre dropdown */
.dash-filter-select {
    padding: 5px 28px 5px 10px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #374151;
    font-family: 'Poppins', sans-serif;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 8px center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.15s ease;
}

.dash-filter-select:focus {
    outline: none;
    border-color: #ffd400;
}

/* "Toplam X hizmet" sayacı */
.dash-service-count {
    font-size: 0.75rem;
    font-weight: 500;
    color: #9ca3af;
    font-family: 'Poppins', sans-serif;
}

/* "Hepsini Gör" accent linki */
.dash-link-accent {
    font-size: 0.75rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    padding: 4px 10px;
    border-radius: 6px;
    transition: background 0.15s ease;
    font-family: 'Poppins', sans-serif;
}

.dash-link-accent:hover {
    background: #fef9e7;
    color: #1a1a1a;
}

/* Dashboard tablolar — thead arka planı */
.dash-widget .services-table thead th {
    background: #f9fafb;
}

/* Blog yazısı kartı */
.dash-blog-item {
    padding: 14px 20px;
    border-bottom: 1px solid #f5f7fa;
    transition: background 0.15s ease;
}

.dash-blog-item:last-child {
    border-bottom: none;
}

.dash-blog-item:hover {
    background: #fafbfc;
}

.dash-blog-title {
    font-size: 0.84rem;
    font-weight: 600;
    color: #111827;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 4px;
    line-height: 1.4;
}

.dash-blog-excerpt {
    font-size: 0.78rem;
    color: #6b7280;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

/* Hızlı erişim linki */
.dash-quick-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-bottom: 1px solid #f5f7fa;
    text-decoration: none;
    color: #374151;
    font-size: 0.84rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    transition: background 0.15s ease;
}

.dash-quick-link:last-child {
    border-bottom: none;
}

.dash-quick-link:hover {
    background: #fafbfc;
    color: #374151;
}

/* Hızlı erişim ikon kutusu */
.dash-quick-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #fef9e7;
    color: #ffd400;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.15s ease;
}

.dash-quick-link:hover .dash-quick-icon {
    background: #ffd400;
    color: #1a1a1a;
}


/* ════════════════════════════════════════
   DASHBOARD — RESPONSIVE
   ════════════════════════════════════════ */

@media (max-width: 991.98px) {
    .dash-widget-footer {
        padding: 12px 16px;
    }

    .dash-filter-select {
        font-size: 0.72rem;
    }

    .dash-service-count {
        display: none;
    }

    .dash-blog-item {
        padding: 12px 16px;
    }

    .dash-quick-link {
        padding: 10px 16px;
    }
}

@media (max-width: 575.98px) {
    .panel-card-header {
        flex-wrap: wrap;
        gap: 8px;
    }

    .dash-link-accent {
        font-size: 0.72rem;
        padding: 3px 8px;
    }
}


/* ════════════════════════════════════════
   TICKET DETAIL — WHMCS STYLE
   ════════════════════════════════════════ */

/* Konu başlık şeridi */
.td-subject-bar {
    padding: 18px 24px;
    border-bottom: 1px solid #f0f1f3;
}

.td-subject {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Mesaj listesi */
.td-messages {
    display: flex;
    flex-direction: column;
}

/* Tek mesaj bloğu */
.td-msg {
    border-bottom: 1px solid #f0f1f3;
}

.td-msg:last-child {
    border-bottom: none;
}

/* Mesaj header — yazar + tarih */
.td-msg-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    background: #f9fafb;
    border-bottom: 1px solid #f0f1f3;
}

.td-msg-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.68rem;
    flex-shrink: 0;
}

.td-msg-author {
    font-size: 0.82rem;
    font-weight: 600;
    color: #111827;
    font-family: 'Poppins', sans-serif;
}

.td-msg-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.68rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    margin-left: 6px;
}

.td-badge-customer {
    background: #fef9e7;
    color: #92700c;
}

.td-badge-staff {
    background: #e8f5e9;
    color: #2e7d32;
}

.td-msg-date {
    font-size: 0.75rem;
    color: #9ca3af;
    font-family: 'Poppins', sans-serif;
}

/* Mesaj içeriği */
.td-msg-body {
    padding: 18px 24px;
    font-size: 0.84rem;
    line-height: 1.7;
    color: #374151;
    font-family: 'Poppins', sans-serif;
}

.td-msg-body p {
    margin: 0 0 8px;
}

.td-msg-body p:last-child {
    margin-bottom: 0;
}

/* Ek dosya */
.td-msg-attachment {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 8px 14px;
    background: #f3f4f6;
    border-radius: 6px;
    font-size: 0.78rem;
    color: #374151;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background 0.15s;
}

.td-msg-attachment:hover {
    background: #e5e7eb;
}

.td-msg-attachment svg {
    color: #6b7280;
    flex-shrink: 0;
}

.td-attachment-size {
    color: #9ca3af;
    font-size: 0.72rem;
}

/* Mesaj footer — değerlendirme */
.td-msg-footer {
    padding: 10px 24px;
    border-top: 1px solid #f0f1f3;
    background: #fafbfc;
}

.td-msg-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.td-rating-label {
    font-size: 0.72rem;
    color: #9ca3af;
    font-family: 'Poppins', sans-serif;
}

.td-stars {
    display: flex;
    gap: 2px;
}

.td-stars svg {
    cursor: pointer;
    transition: transform 0.15s;
}

.td-stars svg:hover {
    transform: scale(1.2);
}

/* Yanıt Formu */
.td-reply-form {
    border-top: 2px solid #f0f1f3;
}

.td-reply-title {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #111827;
    font-family: 'Poppins', sans-serif;
    background: #f9fafb;
    border-bottom: 1px solid #f0f1f3;
}

.td-reply-title svg {
    color: #6b7280;
}

.td-reply-body {
    padding: 18px 24px;
}

.td-reply-attachments {
    margin-top: 14px;
}

.td-reply-actions {
    margin-top: 16px;
    display: flex;
    justify-content: flex-end;
}

/* ═══ Sidebar — Kart Tabanlı ═══ */
.td-sidebar {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    position: sticky;
    top: 20px;
    padding: 24px 20px;
}

/* Sidebar Başlık */
.td-sb-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.td-sb-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #ffd400;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.td-sb-header-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.td-sb-header-sub {
    font-size: 0.72rem;
    color: #9ca3af;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

.td-sb-header-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111827;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}

.td-sb-status-pill {
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    flex-shrink: 0;
}

.td-sb-pill-answered {
    background: #4b5563;
    color: #fff;
}

.td-sb-pill-open {
    background: #ffd400;
    color: #1a1a1a;
}

.td-sb-pill-closed {
    background: #9ca3af;
    color: #fff;
}

/* Bilgi Kartları */
.td-sb-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.td-sb-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: #f9fafb;
    border: 1px solid #f0f1f3;
    border-radius: 12px;
}

.td-sb-card-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.td-sb-card-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: #111827;
    font-family: 'Poppins', sans-serif;
}

.td-sb-card-value {
    font-size: 0.78rem;
    font-weight: 500;
    color: #6b7280;
    font-family: 'Poppins', sans-serif;
}

.td-sb-card-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    flex-shrink: 0;
}

/* Sidebar Footer — Durum Butonu */
.td-sb-footer {
    margin-top: 16px;
}

.td-sb-status-btn {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    text-align: center;
    transition: opacity 0.15s;
}

.td-sb-status-btn:hover {
    opacity: 0.85;
}

.td-sb-btn-answered {
    background: #e8b4b8;
    color: #fff;
}

.td-sb-btn-open {
    background: #ffd400;
    color: #1a1a1a;
}

.td-sb-btn-closed {
    background: #9ca3af;
    color: #fff;
}

/* Responsive */
@media (max-width: 991.98px) {
    .td-sidebar {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .td-subject-bar {
        padding: 14px 16px;
    }

    .td-msg-header {
        padding: 12px 16px;
        flex-wrap: wrap;
        gap: 6px;
    }

    .td-msg-body {
        padding: 14px 16px;
    }

    .td-msg-footer {
        padding: 10px 16px;
    }

    .td-reply-title {
        padding: 12px 16px;
    }

    .td-reply-body {
        padding: 14px 16px;
    }

    .td-sidebar {
        padding: 18px 16px;
    }
}


/* ════════════════════════════════════════
   SERVICE DETAIL — SIDEBAR CARD-BASED
   ════════════════════════════════════════ */

/* Sidebar Başlık (card-based) */
.detail-sb-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 20px 16px;
}

.detail-sb-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #ffd400;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-sb-header-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.detail-sb-header-sub {
    font-size: 0.72rem;
    color: #9ca3af;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

.detail-sb-header-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111827;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}

/* Bilgi Kartları */
.detail-sb-cards {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 16px 16px;
}

.detail-sb-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: #f9fafb;
    border: 1px solid #f0f1f3;
    border-radius: 10px;
}

.detail-sb-card-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.detail-sb-card-label {
    font-size: 0.7rem;
    font-weight: 500;
    color: #6b7280;
    font-family: 'Poppins', sans-serif;
}

.detail-sb-card-value {
    font-size: 0.82rem;
    font-weight: 600;
    color: #111827;
    font-family: 'Poppins', sans-serif;
}

.detail-sb-card-value.highlight {
    font-family: 'Audiowide', cursive;
    color: #ffd400;
}

.detail-sb-card-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    flex-shrink: 0;
}

/* Aksiyon Linkleri */
.detail-sb-actions {
    padding: 12px 16px;
    border-top: 1px solid #f0f1f3;
}

.detail-sb-action {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 0;
    color: #374151;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
}

.detail-sb-action:hover {
    color: #ffd400;
}

.detail-sb-action svg {
    color: #9ca3af;
    flex-shrink: 0;
    transition: color 0.2s;
}

.detail-sb-action:hover svg {
    color: #ffd400;
}

/* Footer Butonları */
.detail-sb-footer {
    padding: 12px 16px 4px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid #f0f1f3;
}


/* ════════════════════════════════════════
   SERVICE DETAIL — TAB CONTENT
   ════════════════════════════════════════ */

.detail-tab-content {
    display: none;
}

.detail-tab-content.active {
    display: block;
}

/* FTP / DNS Bilgi Kartı */
.detail-info-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 16px;
}

.detail-info-card-header {
    padding: 12px 18px;
    background: #f3f4f6;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.78rem;
    font-weight: 600;
    color: #374151;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-info-card-header svg {
    color: #9ca3af;
}

.detail-info-card-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 18px;
    border-bottom: 1px solid #f0f1f3;
    font-size: 0.82rem;
    font-family: 'Poppins', sans-serif;
}

.detail-info-card-row:last-child {
    border-bottom: none;
}

.detail-info-card-label {
    color: #6b7280;
    font-weight: 500;
}

.detail-info-card-value {
    color: #111827;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-copy-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #e5e7eb;
    border: none;
    border-radius: 6px;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.15s;
}

.btn-copy-sm:hover {
    background: #ffd400;
    color: #1a1a1a;
}

/* Genel Tablo (DNS, FTP, Faturalar, E-Posta) */
.detail-data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
    font-family: 'Poppins', sans-serif;
}

.detail-data-table thead th {
    padding: 10px 14px;
    background: #f3f4f6;
    color: #6b7280;
    font-weight: 600;
    font-size: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.detail-data-table tbody td {
    padding: 10px 14px;
    border-bottom: 1px solid #f0f1f3;
    color: #374151;
    font-weight: 500;
}

.detail-data-table tbody tr:last-child td {
    border-bottom: none;
}

.detail-data-table tbody tr:hover {
    background: #fafbfc;
}

.detail-data-table .badge-aktif,
.detail-data-table .badge-beklemede {
    font-size: 0.72rem;
    padding: 3px 10px;
}

/* Şifre Formu */
.detail-password-form {
    max-width: 460px;
}

.detail-password-form .form-group {
    margin-bottom: 16px;
}

.detail-password-form label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
    font-family: 'Poppins', sans-serif;
}

.detail-password-form .form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.82rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.15s;
}

.detail-password-form .form-control:focus {
    border-color: #ffd400;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 212, 0, 0.1);
}

.password-strength {
    height: 4px;
    border-radius: 2px;
    background: #e5e7eb;
    margin-top: 6px;
    overflow: hidden;
}

.password-strength-fill {
    height: 100%;
    border-radius: 2px;
    width: 60%;
    background: #ffd400;
    transition: width 0.3s;
}

/* Nameserver kartı */
.detail-ns-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 8px;
}

.detail-ns-card code {
    font-size: 0.82rem;
    font-weight: 600;
    color: #111827;
    flex: 1;
}

/* Responsive */
@media (max-width: 767.98px) {
    .detail-sb-header {
        padding: 16px 14px 12px;
    }

    .detail-sb-cards {
        padding: 0 12px 12px;
    }

    .detail-sb-actions,
    .detail-sb-footer {
        padding-left: 12px;
        padding-right: 12px;
    }

    .detail-info-card-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 10px 14px;
    }

    .detail-data-table {
        font-size: 0.75rem;
    }

    .detail-data-table thead th,
    .detail-data-table tbody td {
        padding: 8px 10px;
    }
}


/* ════════════════════════════════════════
   PANEL BİLGİLERİ MODAL
   ════════════════════════════════════════ */

.panel-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.2s ease;
}

.panel-modal-overlay.active {
    display: flex;
}

.panel-modal {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 480px;
    margin: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    animation: modalSlideUp 0.25s ease-out;
}

@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.panel-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f1f3;
}

.panel-modal-header .d-flex {
    gap: 12px;
}

.panel-modal-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #ffd400;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.panel-modal-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111827;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}

.panel-modal-subtitle {
    font-size: 0.72rem;
    color: #9ca3af;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.panel-modal-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border: none;
    border-radius: 10px;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.15s;
}

.panel-modal-close:hover {
    background: #e5e7eb;
    color: #111827;
}

.panel-modal-body {
    padding: 8px 0;
}

.panel-modal-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    border-bottom: 1px solid #f5f6f8;
    font-family: 'Poppins', sans-serif;
}

.panel-modal-row:last-child {
    border-bottom: none;
}

.panel-modal-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: #6b7280;
}

.panel-modal-value {
    font-size: 0.82rem;
    font-weight: 600;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 8px;
}

.panel-modal-footer {
    padding: 16px 24px 20px;
    border-top: 1px solid #f0f1f3;
}

@media (max-width: 480px) {
    .panel-modal {
        margin: 12px;
        border-radius: 14px;
    }

    .panel-modal-header {
        padding: 16px 18px;
    }

    .panel-modal-row {
        padding: 10px 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .panel-modal-footer {
        padding: 14px 18px 16px;
    }
}

/* ═══════════════════════════════════════════
   SERVER SPECS GRID (Sunucu Detay)
   ═══════════════════════════════════════════ */

.server-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 14px;
}

.server-spec-card {
    background: #f9fafb;
    border: 1px solid #f0f1f3;
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.server-spec-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #6b7280;
}

.server-spec-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.server-spec-label {
    font-size: 0.68rem;
    color: #6b7280;
    font-weight: 500;
}

.server-spec-value {
    font-size: 0.82rem;
    color: #111827;
    font-weight: 700;
}

@media (max-width: 768px) {
    .server-specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .server-specs-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════
   DOMAIN STATUS GRID (Alan Adı Detay)
   ═══════════════════════════════════════════ */

.domain-status-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 14px;
}

.domain-status-card {
    background: #f9fafb;
    border: 1px solid #f0f1f3;
    border-radius: 10px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.domain-status-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.domain-status-label {
    font-size: 0.72rem;
    color: #6b7280;
    font-weight: 500;
}

.domain-status-value {
    font-size: 0.82rem;
    color: #111827;
    font-weight: 600;
}

.domain-status-value.masked {
    letter-spacing: 2px;
    font-family: monospace;
}

.toggle-switch {
    position: relative;
    width: 42px;
    height: 24px;
    background: #d1d5db;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s;
    border: none;
    padding: 0;
}

.toggle-switch.active {
    background: #22c55e;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}

.toggle-switch.active::after {
    transform: translateX(18px);
}

.ssh-command-box {
    background: #1e1e2e;
    border-radius: 8px;
    padding: 12px 16px;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.ssh-command-box code {
    color: #a6e3a1;
    font-size: 0.82rem;
    font-family: 'Courier New', monospace;
}

.os-reinstall-warning {
    background: #fef3c7;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 12px 16px;
    margin: 14px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.78rem;
    color: #92400e;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .domain-status-grid {
        grid-template-columns: 1fr;
    }
}

/* ════════════════════════════════════════
   VDS MANAGEMENT PAGES
   (vds-manage.html, vds-graphics.html)
   ════════════════════════════════════════ */

/* --- VDS BREADCRUMB --- */
.vds-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: #6b7280;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.vds-breadcrumb a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
}

.vds-breadcrumb a:hover {
    color: #282828;
}

.vds-breadcrumb span {
    color: #d1d5db;
}

/* --- VDS WRAPPER --- */
.vds-manage-wrapper {
    max-width: 100%;
    padding: 0;
}

/* --- VDS HEADER --- */
.vds-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.vds-header-left {
    position: relative;
}

.vds-server-title {
    font-size: 1.85rem;
    font-weight: 600;
    color: #282828;
    letter-spacing: -0.02em;
    font-family: 'Poppins', sans-serif;
}

.vds-status-dot {
    width: 12px;
    height: 12px;
    background: #22C55E;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: vds-pulse-green 2s infinite;
    margin-top: 6px;
}

.vds-edit-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    cursor: pointer;
    transition: 0.2s;
    background: transparent;
    border: none;
}

.vds-edit-btn:hover {
    background: #f3f4f6;
    color: #282828;
}

/* VDS RENAME POPUP */
.vds-rename-popup {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 10px;
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border: 1px solid #e5e7eb;
    z-index: 100;
    min-width: 320px;
    animation: vds-slideDown 0.2s ease;
    align-items: center;
    gap: 8px;
}

.vds-rename-input {
    flex: 1;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 1rem;
    color: #282828;
    outline: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    transition: 0.2s;
}

.vds-rename-input:focus {
    border-color: #ffd400;
    box-shadow: 0 0 0 1px #ffd400;
}

.vds-btn-action-mini {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.vds-btn-save {
    background: #10B981;
    color: #fff;
}

.vds-btn-save:hover {
    background: #059669;
}

.vds-btn-cancel {
    background: #f3f4f6;
    color: #6b7280;
}

.vds-btn-cancel:hover {
    background: #e5e7eb;
    color: #EF4444;
}

/* VDS IP PILL */
.vds-ip-pill {
    background: #f3f4f6;
    padding: 8px 16px;
    border-radius: 10px;
    font-family: monospace;
    font-weight: 500;
    font-size: 1rem;
    color: #282828;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.2s;
    border: 1px solid transparent;
}

.vds-ip-pill:hover {
    background: #fff;
    border-color: #e5e7eb;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

/* VDS CONTROLS */
.vds-controls-container {
    display: flex;
    gap: 12px;
    align-items: center;
}

.vds-control-group {
    background: #fff;
    padding: 4px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    display: flex;
    gap: 4px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

.vds-btn-ctrl {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    transition: 0.2s;
    background: transparent;
    color: #6b7280;
}

.vds-btn-ctrl:hover {
    background: #f8f9fb;
    color: #282828;
}

.vds-btn-ctrl.start:hover {
    color: #059669;
    background: #F0FDF4;
}

.vds-btn-ctrl.stop:hover {
    color: #DC2626;
    background: #FEF2F2;
}

.vds-btn-vnc {
    height: 58px;
    background: #282828;
    color: #fff;
    padding: 0 24px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.vds-btn-vnc i {
    transition: transform 0.3s ease;
}

.vds-btn-vnc:hover {
    background: #ffd400;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(255, 212, 0, 0.4);
}

.vds-btn-vnc:hover i {
    transform: translateX(3px);
}

/* --- VDS NAVIGATION --- */
.vds-nav {
    background: #fff;
    padding: 6px;
    border-radius: 12px;
    display: inline-flex;
    gap: 6px;
    margin-bottom: 30px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

.vds-nav-link {
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 400;
    color: #6b7280;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
    font-size: 0.88rem;
    font-family: 'Poppins', sans-serif;
}

.vds-nav-link:hover {
    background: #f8f9fb;
    color: #282828;
}

.vds-nav-link.active {
    background: #282828;
    color: #fff;
    font-weight: 500;
}

.vds-nav-link.active i {
    color: #ffd400;
}

/* --- VDS METRIC CARDS --- */
.vds-metric-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    height: 100%;
    transition: 0.3s;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.vds-metric-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.vds-ring-container {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
}

.vds-ring-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.vds-ring-hole {
    position: absolute;
    width: 58px;
    height: 58px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 500;
    color: #282828;
}

.vds-metric-info h6 {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.vds-metric-info h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #282828;
    margin: 0;
}

.vds-metric-info span {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 300;
}

.vds-spark-container {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 30px;
    width: 100%;
}

.vds-spark-bar {
    flex: 1;
    background: #10B981;
    border-radius: 2px;
    opacity: 0.8;
}

/* --- VDS INFO CARD --- */
.vds-info-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

.vds-info-header {
    padding: 15px 25px;
    border-bottom: 1px solid #e5e7eb;
    background: #fafafa;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vds-info-header h6 {
    margin: 0;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.vds-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 25px;
    border-bottom: 1px solid #f8f9fb;
}

.vds-info-row:last-child {
    border-bottom: none;
}

.vds-lbl {
    color: #6b7280;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
}

.vds-val {
    font-weight: 500;
    color: #282828;
    font-size: 0.92rem;
}

.vds-val-green {
    color: #16A34A;
}

/* --- VDS SERVICE CARD --- */
.vds-service-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
    margin-bottom: 20px;
    position: relative;
}

.vds-bg-icon {
    position: absolute;
    top: 10px;
    right: -20px;
    font-size: 8rem;
    color: #000;
    opacity: 0.03;
    transform: rotate(15deg);
    pointer-events: none;
}

.vds-svc-body {
    padding: 30px 25px;
}

.vds-time-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 10px;
}

.vds-time-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
}

.vds-time-big {
    font-size: 2.5rem;
    font-weight: 500;
    color: #282828;
    line-height: 1;
}

.vds-pro-progress {
    height: 8px;
    background: #f3f4f6;
    border-radius: 10px;
    margin-top: 30px;
    margin-bottom: 20px;
    overflow: hidden;
}

.vds-pro-fill {
    height: 100%;
    background: #10B981;
    width: 70%;
    border-radius: 10px;
}

.vds-date-info {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 300;
}

.vds-date-item strong {
    color: #282828;
    display: block;
    font-weight: 500;
}

.vds-svc-footer {
    background: #fafafa;
    border-top: 1px solid #e5e7eb;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vds-price-tag {
    font-size: 1.4rem;
    font-weight: 600;
    color: #282828;
    font-family: 'Audiowide', cursive;
}

.vds-price-tag small {
    font-size: 1rem;
    font-weight: 400;
    color: #6b7280;
    font-family: 'Poppins', sans-serif;
}

.vds-btn-renew {
    background: #282828;
    color: #fff;
    padding: 8px 24px;
    border-radius: 8px;
    font-weight: 500;
    border: none;
    font-size: 0.9rem;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
}

.vds-btn-renew:hover {
    background: #ffd400;
    color: #1a1a1a;
    transform: translateY(-1px);
}

/* --- VDS QUICK ACTIONS --- */
.vds-action-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e5e7eb;
    margin-bottom: 10px;
    cursor: pointer;
    transition: 0.2s;
    text-decoration: none;
    color: inherit;
}

.vds-action-item:hover {
    border-color: #6b7280;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

.vds-btn-rebuild {
    width: 100%;
    padding: 14px;
    text-align: center;
    border: 2px dashed #ef4444;
    border-radius: 12px;
    background: #fff;
    color: #ef4444;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: 0.2s;
}

.vds-btn-rebuild:hover {
    background: #fef2f2;
}

/* --- VDS CREDENTIAL BUTTONS --- */
.vds-btn-credential {
    background: transparent;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 4px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    line-height: 1;
}

.vds-btn-credential:hover {
    color: #282828;
    background: #f3f4f6;
}

.vds-password-mask {
    font-family: monospace;
    letter-spacing: 2px;
    font-size: 0.95rem;
    display: inline-block;
    transform: translateY(1px);
}

/* --- VDS GRAPHICS PAGE --- */
.vds-content-area {
    display: flex;
    flex-direction: column;
}

.vds-graph-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.vds-filter-group {
    display: inline-flex;
    background: #fff;
    padding: 4px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

.vds-filter-btn {
    border: none;
    background: transparent;
    padding: 6px 16px;
    border-radius: 8px;
    color: #6b7280;
    font-size: 0.85rem;
    font-weight: 500;
    transition: 0.2s;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.vds-filter-btn:hover {
    color: #282828;
    background: #f8f9fb;
}

.vds-filter-btn.active {
    background: #282828;
    color: #fff;
}

.vds-refresh-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    cursor: pointer;
    transition: 0.2s;
    font-size: 1.2rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

.vds-refresh-btn:hover {
    background: #f8f9fb;
    color: #282828;
    border-color: #d1d5db;
}

.vds-refresh-btn.rotating i {
    animation: vds-spin 1s linear infinite;
}

.vds-charts-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    min-height: 500px;
}

.vds-chart-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 15px 20px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.vds-chart-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.vds-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-shrink: 0;
}

.vds-chart-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: #282828;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vds-chart-badge {
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 6px;
    background: #f3f4f6;
    color: #6b7280;
    font-weight: 500;
}

.vds-chart-body {
    flex-grow: 1;
    position: relative;
    width: 100%;
}

/* --- VDS ANIMATIONS --- */
@keyframes vds-pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@keyframes vds-slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes vds-growBar {
    0% { height: 10%; }
    100% { height: 80%; }
}

@keyframes vds-spin {
    100% { transform: rotate(360deg); }
}

/* --- VDS RESPONSIVE --- */
@media (max-width: 767.98px) {
    .vds-manage-wrapper {
        padding-bottom: 100px;
    }

    .vds-header {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        margin-bottom: 20px;
    }

    .vds-header-left {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .vds-server-title {
        font-size: 1.4rem;
        text-align: center;
    }

    .vds-controls-container {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 12px 20px;
        box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.08);
        z-index: 1000;
        border-top: 1px solid #e5e7eb;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 2fr;
        gap: 10px;
        justify-content: stretch;
    }

    .vds-controls-container > div[style*="width: 1px"] {
        display: none;
    }

    .vds-control-group {
        border: none;
        background: transparent;
        box-shadow: none;
        padding: 0;
        display: contents;
    }

    .vds-btn-ctrl {
        width: 100%;
        height: 48px;
        border-radius: 12px;
        background: #fff;
        border: 1px solid #e5e7eb;
        font-size: 1.4rem;
    }

    .vds-btn-vnc {
        height: 48px;
        width: 100%;
        justify-content: center;
        font-size: 0.9rem;
    }

    .vds-nav {
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        display: flex;
        padding: 5px 5px 15px 5px;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 20px;
        background: transparent;
        box-shadow: none;
        border: none;
        gap: 10px;
    }

    .vds-nav::-webkit-scrollbar {
        display: none;
    }

    .vds-nav-link {
        flex-shrink: 0;
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 50px;
        padding: 8px 18px;
        box-shadow: 0 1px 2px rgba(0,0,0,0.03);
    }

    .vds-nav-link.active {
        border-color: #282828;
        box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    }

    .vds-metric-info h3 {
        font-size: 1.15rem;
    }

    .vds-metric-card {
        padding: 15px;
        gap: 10px;
    }

    .vds-ring-container {
        width: 50px;
        height: 50px;
    }

    .vds-ring-hole {
        width: 40px;
        height: 40px;
        font-size: 0.7rem;
    }

    .vds-content-area {
        display: block;
        overflow: visible;
    }

    .vds-charts-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        min-height: auto;
    }

    .vds-chart-card {
        min-height: 300px;
    }

    .vds-graph-toolbar {
        flex-direction: column-reverse;
        gap: 15px;
        align-items: stretch;
    }

    .vds-filter-group {
        justify-content: space-between;
        display: flex;
    }

    .vds-filter-btn {
        flex: 1;
        text-align: center;
    }

    .vds-refresh-btn {
        width: 100%;
    }
}

/* ════════════════════════════════════════
   VDS RDNS / YEDEKLER / AYARLAR PAGES
   ════════════════════════════════════════ */

/* --- RDNS PAGE --- */
.vds-rdns-form {
    display: flex;
    gap: 10px;
    padding: 15px 25px 20px;
    align-items: center;
}

.vds-rdns-input {
    flex: 1;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.92rem;
    color: #282828;
    outline: none;
    font-family: 'Poppins', sans-serif;
    transition: 0.2s;
}

.vds-rdns-input:focus {
    border-color: #ffd400;
    box-shadow: 0 0 0 1px #ffd400;
}

.vds-btn-save-rdns {
    padding: 10px 24px;
    border-radius: 8px;
    border: none;
    background: #282828;
    color: #fff;
    font-weight: 500;
    font-size: 0.88rem;
    cursor: pointer;
    transition: 0.2s;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.vds-btn-save-rdns:hover {
    background: #ffd400;
    color: #1a1a1a;
    transform: translateY(-1px);
}

.vds-note-box {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 20px;
}

.vds-note-box.warning {
    background: #fffbeb;
    border-color: #fde68a;
}

.vds-note-box.danger {
    background: #fef2f2;
    border-color: #fecaca;
}

.vds-note-title {
    font-weight: 600;
    font-size: 0.88rem;
    color: #282828;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vds-note-text {
    font-size: 0.84rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

.vds-note-text li {
    margin-bottom: 4px;
}

/* --- BACKUP PAGE --- */
.vds-backup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.vds-backup-header h5 {
    font-weight: 600;
    color: #282828;
    margin: 0;
    font-size: 1.1rem;
}

.vds-backup-header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.vds-backup-quota {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.84rem;
    color: #6b7280;
}

.vds-backup-quota-bar {
    width: 100px;
    height: 6px;
    background: #f3f4f6;
    border-radius: 10px;
    overflow: hidden;
}

.vds-backup-quota-fill {
    height: 100%;
    background: #10B981;
    border-radius: 10px;
    transition: width 0.3s;
}

.vds-btn-backup {
    padding: 10px 22px;
    border-radius: 10px;
    border: none;
    background: #282828;
    color: #fff;
    font-weight: 500;
    font-size: 0.88rem;
    cursor: pointer;
    transition: 0.2s;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vds-btn-backup:hover {
    background: #ffd400;
    color: #1a1a1a;
    transform: translateY(-1px);
}

.vds-backup-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.vds-backup-table thead th {
    background: #fafafa;
    padding: 12px 20px;
    font-size: 0.76rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
}

.vds-backup-table tbody td {
    padding: 14px 20px;
    font-size: 0.88rem;
    color: #282828;
    border-bottom: 1px solid #f3f4f6;
    vertical-align: middle;
}

.vds-backup-table tbody tr:last-child td {
    border-bottom: none;
}

.vds-backup-table tbody tr:hover {
    background: #f8f9fb;
}

.vds-backup-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.76rem;
    font-weight: 500;
}

.vds-backup-badge.success {
    background: #f0fdf4;
    color: #16a34a;
}

.vds-backup-badge.pending {
    background: #fffbeb;
    color: #d97706;
}

.vds-backup-badge.failed {
    background: #fef2f2;
    color: #dc2626;
}

.vds-backup-actions {
    display: flex;
    gap: 6px;
}

.vds-btn-backup-action {
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #6b7280;
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: 'Poppins', sans-serif;
}

.vds-btn-backup-action:hover {
    border-color: #282828;
    color: #282828;
    background: #f8f9fb;
}

.vds-btn-backup-action.danger {
    color: #dc2626;
    border-color: #fecaca;
}

.vds-btn-backup-action.danger:hover {
    background: #fef2f2;
    border-color: #dc2626;
}

.vds-backup-empty {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
}

.vds-backup-empty i {
    font-size: 3rem;
    color: #d1d5db;
    margin-bottom: 15px;
    display: block;
}

.vds-backup-empty h6 {
    font-weight: 600;
    color: #282828;
    margin-bottom: 8px;
}

/* --- SETTINGS PAGE --- */
.vds-settings-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 25px;
    border-bottom: 1px solid #f3f4f6;
}

.vds-settings-row:last-child {
    border-bottom: none;
}

.vds-settings-label {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    margin-right: 20px;
}

.vds-settings-label span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #282828;
}

.vds-settings-desc {
    font-size: 0.78rem;
    color: #9ca3af;
    line-height: 1.4;
}

.vds-settings-control {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vds-toggle {
    width: 44px;
    height: 24px;
    background: #d1d5db;
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
    border: none;
    padding: 0;
    flex-shrink: 0;
}

.vds-toggle::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    top: 3px;
    left: 3px;
    transition: 0.3s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.vds-toggle.active {
    background: #10B981;
}

.vds-toggle.active::after {
    left: 23px;
}

.vds-input-sm {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.88rem;
    color: #282828;
    outline: none;
    font-family: 'Poppins', sans-serif;
    transition: 0.2s;
    width: 220px;
    max-width: 100%;
}

.vds-input-sm:focus {
    border-color: #ffd400;
    box-shadow: 0 0 0 1px #ffd400;
}

.vds-select-sm {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.88rem;
    color: #282828;
    outline: none;
    font-family: 'Poppins', sans-serif;
    transition: 0.2s;
    width: 220px;
    max-width: 100%;
    background: #fff;
    cursor: pointer;
    appearance: auto;
}

.vds-select-sm:focus {
    border-color: #ffd400;
    box-shadow: 0 0 0 1px #ffd400;
}

.vds-btn-sm {
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #282828;
    font-weight: 500;
    font-size: 0.82rem;
    cursor: pointer;
    transition: 0.2s;
    font-family: 'Poppins', sans-serif;
}

.vds-btn-sm:hover {
    border-color: #282828;
    background: #f8f9fb;
}

.vds-btn-danger-outline {
    width: 100%;
    padding: 12px;
    text-align: center;
    border: 1.5px solid #fecaca;
    border-radius: 10px;
    background: #fff;
    color: #dc2626;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: 0.2s;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.vds-btn-danger-outline:hover {
    background: #fef2f2;
    border-color: #dc2626;
}

.vds-danger-zone {
    padding: 20px 25px;
}

.vds-danger-warning {
    font-size: 0.78rem;
    color: #9ca3af;
    line-height: 1.6;
    margin-top: 15px;
}

.vds-os-current {
    padding: 20px 25px;
}

.vds-os-current .vds-btn-save-rdns {
    width: 100%;
    justify-content: center;
    margin-top: 15px;
}

/* --- VDS CONFIRM MODAL --- */
.vds-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.vds-modal-overlay.show {
    display: flex;
}

.vds-modal-box {
    background: #fff;
    border-radius: 16px;
    max-width: 440px;
    width: 90%;
    padding: 30px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.2);
    text-align: center;
    animation: vds-slideDown 0.3s ease;
}

.vds-modal-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.vds-modal-icon.warning {
    background: #fffbeb;
    color: #d97706;
}

.vds-modal-icon.danger {
    background: #fef2f2;
    color: #dc2626;
}

.vds-modal-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #282828;
    margin-bottom: 10px;
}

.vds-modal-text {
    font-size: 0.88rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 25px;
}

.vds-modal-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.vds-modal-btn {
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.88rem;
    cursor: pointer;
    transition: 0.2s;
    font-family: 'Poppins', sans-serif;
    border: none;
}

.vds-modal-btn.cancel {
    background: #f3f4f6;
    color: #6b7280;
}

.vds-modal-btn.cancel:hover {
    background: #e5e7eb;
    color: #282828;
}

.vds-modal-btn.confirm {
    background: #dc2626;
    color: #fff;
}

.vds-modal-btn.confirm:hover {
    background: #b91c1c;
    transform: translateY(-1px);
}

.vds-modal-btn.confirm-warning {
    background: #d97706;
    color: #fff;
}

.vds-modal-btn.confirm-warning:hover {
    background: #b45309;
    transform: translateY(-1px);
}

/* --- VDS SUCCESS TOAST --- */
.vds-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #fff;
    border-radius: 12px;
    padding: 14px 22px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-left: 4px solid #10B981;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #282828;
    z-index: 10000;
    animation: vds-slideDown 0.3s ease;
    transition: opacity 0.3s;
}

.vds-toast i {
    color: #10B981;
    font-size: 1.2rem;
}

/* --- RESPONSIVE FOR NEW PAGES --- */
@media (max-width: 767.98px) {
    .vds-rdns-form {
        flex-direction: column;
    }

    .vds-btn-save-rdns {
        width: 100%;
        justify-content: center;
    }

    .vds-backup-header {
        flex-direction: column;
        align-items: stretch;
    }

    .vds-backup-header-right {
        flex-direction: column;
    }

    .vds-btn-backup {
        width: 100%;
        justify-content: center;
    }

    .vds-backup-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .vds-backup-table {
        min-width: 600px;
    }

    .vds-settings-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 14px 20px;
    }

    .vds-settings-label {
        margin-right: 0;
    }

    .vds-settings-control {
        width: 100%;
    }

    .vds-input-sm,
    .vds-select-sm {
        width: 100%;
    }

    .vds-modal-box {
        margin: 0 15px;
    }

    .vds-modal-actions {
        flex-direction: column;
    }

    .vds-modal-btn {
        width: 100%;
    }

    .vds-info-header-danger h6 {
        font-size: 0.75rem;
    }
}
