/* ===== HOSTING PANEL STYLES ===== */

/* Hosting Header */
.hosting-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hosting-brand {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hosting-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hosting-subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Service Mode Switcher */
.service-mode-switcher {
    display: flex;
    align-items: center;
}

.mode-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 4px;
    gap: 4px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mode-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    color: #6c757d;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mode-tab:hover {
    color: #495057;
    background: rgba(108, 117, 125, 0.1);
    text-decoration: none;
}

.mode-tab.active {
    color: #ffffff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.mode-tab i {
    font-size: 16px;
}

/* Dark mode için mode switcher */
[data-bs-theme="dark"] .mode-tabs {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

[data-bs-theme="dark"] .mode-tab {
    color: #6c757d;
}

[data-bs-theme="dark"] .mode-tab:hover {
    color: #495057;
    background: rgba(108, 117, 125, 0.1);
}

[data-bs-theme="dark"] .mode-tab.active {
    color: #ffffff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
}

/* Hosting Dashboard */
.hosting-dashboard {
    padding: 20px 0;
}

/* Welcome Banner */
.hosting-welcome-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    color: white;
    margin-bottom: 30px;
}

.welcome-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.welcome-text h1 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.welcome-text p {
    font-size: 16px;
    margin: 0;
    opacity: 0.9;
}

.welcome-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 4px;
}

.welcome-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.welcome-decoration .decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.welcome-decoration .decoration-circle:nth-child(1) {
    width: 120px;
    height: 120px;
    top: -60px;
    right: -60px;
    animation: float 6s ease-in-out infinite;
}

.welcome-decoration .decoration-circle:nth-child(2) {
    width: 80px;
    height: 80px;
    top: 20px;
    right: 150px;
    animation: float 8s ease-in-out infinite reverse;
}

.welcome-decoration .decoration-circle:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: -30px;
    right: 100px;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(180deg); }
}

/* Hosting Stat Cards */
.hosting-stat-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    min-height: 180px;
    display: flex;
    flex-direction: column;
}

.hosting-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hosting-stat-card.vps-card:hover {
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.hosting-stat-card.dedicated-card:hover {
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.2);
}

.hosting-stat-card.vds-card:hover {
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.2);
}

.hosting-stat-card.domain-card:hover {
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.hosting-stat-card .card-header {
    flex-shrink: 0;
}

.hosting-stat-card .card-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Services List */
.hosting-services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-item.suspended {
    opacity: 0.7;
    border-color: #f59e0b;
    background: linear-gradient(135deg, #fef3c7 0%, #fef9e7 100%);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.service-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.service-type-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-type-badge.vps {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.service-type-badge.dedicated {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.service-type-badge.vds {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.service-type-badge.domain {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
}

.service-name {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.service-ip {
    font-size: 14px;
    color: #6b7280;
    font-family: 'Courier New', monospace;
}

.service-status {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.active {
    background: #d1e7dd;
    color: #0f5132;
    border: 1px solid #a3cfbb;
}

.status-badge.suspended {
    background: #fff3cd;
    color: #664d03;
    border: 1px solid #ffecb5;
}

.status-badge.cancelled {
    background: #f8d7da;
    color: #842029;
    border: 1px solid #f5c2c7;
}

.status-badge.terminated {
    background: #6c757d;
    color: #ffffff;
    border: 1px solid #5a6268;
}

.status-badge.payment-pending {
    background: #fff3cd;
    color: #664d03;
    border: 1px solid #ffecb5;
    animation: pulse-payment 2s infinite;
}

.status-badge.setup-pending {
    background: #cff4fc;
    color: #055160;
    border: 1px solid #9eeaf9;
    animation: pulse-setup 2s infinite;
}

.service-price {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
}

.service-specs {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #4b5563;
}

.spec-item i {
    color: #667eea;
    width: 16px;
}

.spec-item.next-due {
    color: #f59e0b;
    font-weight: 600;
}

.service-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.service-actions .btn {
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-actions .btn:hover {
    transform: translateY(-1px);
}

/* Quick Actions */
.quick-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.quick-action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: #1f2937;
    transition: all 0.3s ease;
}

.quick-action-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #1f2937;
}

.action-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.quick-action-item span {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

/* Yeni Hizmet Satın Al butonu - Hoş Geldiniz gradyanına uygun */
.btn-welcome {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: #ffffff;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(102, 126, 234, 0.35);
    transition: all 0.3s ease;
}

.btn-welcome:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(102, 126, 234, 0.45);
    color: #ffffff;
}

.btn-welcome:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.35);
}

/* btn-welcome butonlarındaki ikonları beyaz yap */
.btn-welcome i {
    color: #ffffff !important;
}

[data-bs-theme="dark"] .btn-welcome {
    box-shadow: 0 6px 18px rgba(102, 126, 234, 0.25);
}

[data-bs-theme="dark"] .btn-welcome:hover {
    box-shadow: 0 10px 24px rgba(102, 126, 234, 0.35);
}

/* Activity Timeline */
.activity-timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.activity-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.activity-item:first-child {
    padding-top: 0;
}

.activity-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Son Aktiviteler Card - Compact Layout */
.card.h-md-50 .card-body {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
}

.card.h-md-50 .activity-timeline {
    margin-top: 0;
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.activity-icon.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.activity-icon.warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.activity-icon.info {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.activity-content h5 {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 4px 0;
}

.activity-content p {
    font-size: 13px;
    color: #6b7280;
    margin: 0 0 6px 0;
    line-height: 1.4;
}

.activity-time {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
}

/* Dark Theme Adjustments */
[data-bs-theme="dark"] .hosting-stat-card,
[data-bs-theme="dark"] .service-item,
[data-bs-theme="dark"] .quick-action-item {
    background: linear-gradient(135deg, #1e1e2e 0%, #2a2d3a 100%);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .service-name,
[data-bs-theme="dark"] .service-price,
[data-bs-theme="dark"] .activity-content h5 {
    color: white;
}

[data-bs-theme="dark"] .service-ip,
[data-bs-theme="dark"] .spec-item,
[data-bs-theme="dark"] .activity-content p {
    color: rgba(255, 255, 255, 0.7);
}

[data-bs-theme="dark"] .quick-action-item {
    color: white;
}

[data-bs-theme="dark"] .quick-action-item:hover {
    color: white;
}

[data-bs-theme="dark"] .activity-item {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

/* Welcome Banner - Her zaman beyaz yazı */
.welcome-text h1,
.welcome-text p,
.stat-number,
.stat-label {
    color: white !important;
}

[data-bs-theme="dark"] .welcome-text h1,
[data-bs-theme="dark"] .welcome-text p,
[data-bs-theme="dark"] .stat-number,
[data-bs-theme="dark"] .stat-label {
    color: white !important;
}

/* Header User Name - Her zaman beyaz kalması için */
.user-name,
.user-role {
    color: white !important;
}

[data-bs-theme="dark"] .user-name,
[data-bs-theme="dark"] .user-role {
    color: white !important;
}

/* Logo - Sadece dark logo görünsün */
.main-logo.theme-light-show {
    display: none !important;
}

.main-logo.theme-dark-show {
    display: block !important;
    height: 45px !important;
    width: auto !important;
    max-height: 45px !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Header Optimizasyonları */
    .hosting-header {
        padding: 8px 0;
    }
    
    .app-container {
        padding: 0 15px;
    }
    
    .modern-logo-container .logo-wrapper {
        max-width: 120px;
    }
    
    .hosting-brand {
        display: none;
    }
    
    .service-mode-switcher {
        margin-left: 0;
    }
    
    .mode-tabs {
        padding: 2px;
        gap: 2px;
    }
    
    .mode-tab {
        padding: 6px 8px;
        font-size: 12px;
        min-width: 40px;
    }
    
    .mode-tab span {
        display: none;
    }
    
    .mode-tab i {
        font-size: 14px;
    }
    
    /* Hosting Paneli başlık bölümünü mobilde gizle */
    .quick-actions-bar .row {
        display: none !important;
    }
    
    /* User Profile Optimizasyonları */
    .modern-user-profile {
        flex-direction: column;
        gap: 8px;
    }
    
    .user-info-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }
    
    .user-details {
        display: none;
    }
    
    .user-avatar {
        width: 32px;
        height: 32px;
    }
    
    .avatar-circle {
        width: 32px;
        height: 32px;
    }
    
    .avatar-text {
        font-size: 12px;
    }
    
    .user-actions {
        gap: 4px;
    }
    
    .action-btn {
        width: 32px;
        height: 32px;
        padding: 0;
        font-size: 12px;
    }
    
    /* Dashboard Content */
    .hosting-dashboard {
        padding: 15px 0;
    }
    
    .quick-actions-bar {
        margin-bottom: 20px;
    }
    
    .quick-actions-bar .row {
        gap: 15px;
    }
    
    .quick-actions-bar .col-lg-4 {
        order: -1;
    }
    
    .page-heading {
        font-size: 20px;
        text-align: center;
    }
    
    .page-title {
        font-size: 12px;
    }
    
    /* Welcome Banner */
    .hosting-welcome-banner {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .welcome-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .welcome-text h1 {
        font-size: 24px;
    }
    
    .welcome-text p {
        font-size: 14px;
    }
    
    .welcome-stats {
        gap: 15px;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    /* Stats Cards */
    .row.g-5.g-xl-8 {
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .hosting-stat-card {
        margin-bottom: 15px;
    }
    
    .hosting-stat-card .card-header {
        padding: 15px 15px 0;
    }
    
    .hosting-stat-card .card-body {
        padding: 10px 15px 15px;
    }
    
    .hosting-stat-card .card-title {
        gap: 8px;
    }
    
    .hosting-stat-card .fs-2 {
        font-size: 1.2rem;
    }
    
    .hosting-stat-card .fs-2hx {
        font-size: 1.8rem;
    }
    
    .hosting-stat-card .card-label {
        font-size: 14px;
    }
    
    /* Service Cards */
    .service-header {
        flex-direction: column;
        gap: 12px;
    }
    
    .service-status {
        align-items: flex-start;
    }
    
    .service-specs {
        gap: 16px;
    }
    
    .service-actions {
        justify-content: center;
    }
    
    .quick-actions-grid {
        grid-template-columns: 1fr;
    }
    
    /* Alerts */
    .alert {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .alert .fs-2 {
        font-size: 1.2rem;
    }
    
    .alert h4 {
        font-size: 16px;
    }
    
    .alert p {
        font-size: 13px;
    }
}

/* Hosting sayfasında hosting butonunu gizle (zaten hosting sayfasındayız) */
body.hosting-page .floating-hosting-btn {
    display: none !important;
}

/* ===========================================
   HOSTING SERVICES PAGINATION & STATUS
   ========================================== */

/* Sayfalandırma bilgi alanı */
.services-pagination-info {
    background: rgba(249, 250, 251, 0.8);
    border: 1px solid rgba(229, 231, 235, 0.6);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 20px;
}

[data-bs-theme="dark"] .services-pagination-info {
    background: rgba(31, 41, 55, 0.8);
    border-color: rgba(75, 85, 99, 0.6);
}

/* Durum gösterge legend */
.services-status-legend {
    display: flex;
    gap: 16px;
    align-items: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.legend-dot.active {
    background: #10b981;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.legend-dot.suspended {
    background: #f59e0b;
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
}

.legend-dot.cancelled {
    background: #ef4444;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

.legend-dot.terminated {
    background: #6c757d;
    box-shadow: 0 0 0 2px rgba(108, 117, 125, 0.2);
}

.legend-text {
    color: #6b7280;
    font-size: 11px;
}

[data-bs-theme="dark"] .legend-text {
    color: #9ca3af;
}

/* Sayfalama bilgisi karanlık modda beyaz */
[data-bs-theme="dark"] .text-muted-2 {
    color: #ffffff !important;
}

/* Hizmet container */
.services-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Hizmet durum bazlı stiller */
.service-item.active {
    border-left: 4px solid #10b981;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.12) 100%);
}

.service-item.suspended {
    border-left: 4px solid #f59e0b;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.02) 0%, rgba(245, 158, 11, 0.05) 100%);
    opacity: 0.85;
}

.service-item.cancelled {
    border-left: 4px solid #ef4444;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.02) 0%, rgba(239, 68, 68, 0.05) 100%);
    opacity: 0.7;
}

.service-item.terminated {
    border-left: 4px solid #dc2626;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.08) 0%, rgba(220, 38, 38, 0.12) 100%);
    opacity: 0.8;
}

[data-bs-theme="dark"] .service-item.active {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(16, 185, 129, 0.15) 100%);
}

[data-bs-theme="dark"] .service-item.suspended {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(245, 158, 11, 0.08) 100%);
}

[data-bs-theme="dark"] .service-item.cancelled {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(239, 68, 68, 0.08) 100%);
}

[data-bs-theme="dark"] .service-item.terminated {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.12) 0%, rgba(220, 38, 38, 0.15) 100%);
}

/* Status badge güncelleme */
.status-badge.active {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-badge.suspended {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.status-badge.cancelled {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Sayfalandırma kontrolü */
.services-pagination {
    background: rgba(249, 250, 251, 0.5);
    border: 1px solid rgba(229, 231, 235, 0.6);
    border-radius: 12px;
    padding: 16px 20px;
    margin-top: 24px;
}

[data-bs-theme="dark"] .services-pagination {
    background: rgba(31, 41, 55, 0.5);
    border-color: rgba(75, 85, 99, 0.6);
}

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

.pagination-controls .btn {
    min-width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.2s ease;
}

.pagination-controls .btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border: none;
    color: white;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.pagination-controls .btn-light {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(229, 231, 235, 0.8);
    color: #374151;
}

.pagination-controls .btn-light:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: #3b82f6;
    transform: translateY(-1px);
}

[data-bs-theme="dark"] .pagination-controls .btn-light {
    background: rgba(31, 41, 55, 0.8);
    border-color: rgba(75, 85, 99, 0.8);
    color: #d1d5db;
}

[data-bs-theme="dark"] .pagination-controls .btn-light:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.4);
    color: #60a5fa;
}

/* Responsive sayfalandırma */
@media (max-width: 768px) {
    .services-pagination-info .d-flex {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start !important;
    }
    
    .services-status-legend {
        gap: 12px;
    }
    
    .services-pagination .d-flex {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start !important;
    }
    
    .pagination-controls {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
}

/* Hizmet yeniden aktifleştirme butonu */
.btn-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* İptal edilmiş hizmet için özel stil */
.service-item.cancelled .service-actions {
    justify-content: flex-end;
    padding-top: 8px;
}

.service-item.cancelled .service-actions .text-muted {
    font-style: italic;
    font-size: 12px;
}

/* ===========================================
   MODERN FOOTER STYLES
   ========================================== */

/* Modern Footer */
.app-footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    margin-top: 2rem;
    width: 100%;
    box-shadow: 0 -4px 20px rgba(102, 126, 234, 0.1);
}

.app-footer .container-xxl {
    padding: 0 2rem;
    max-width: 1320px;
    margin: 0 auto;
}

/* Footer Copyright */
.footer-copyright {
    display: flex;
    align-items: center;
    gap: 8px;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 0.9rem;
}

.company-link {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 6px;
}

.company-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
    text-decoration: none;
}

/* Footer Menu */
.footer-menu {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-menu .menu-item {
    margin: 0;
}

.footer-menu .menu-link {
    display: flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-menu .menu-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
    transform: translateY(-2px);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.footer-menu .menu-link i {
    font-size: 0.85rem;
    margin-right: 0.5rem;
    opacity: 0.9;
}

/* Dark theme için footer */
[data-bs-theme="dark"] .app-footer {
    background: linear-gradient(135deg, #1e1e2e 0%, #2a2d3a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

[data-bs-theme="dark"] .footer-menu .menu-link {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8) !important;
}

[data-bs-theme="dark"] .footer-menu .menu-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

/* Responsive footer */
@media (max-width: 768px) {
    .app-footer {
        padding: 0.25rem 1rem;
        text-align: center;
        width: 100%;
    }
    
    .footer-menu {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .footer-menu .menu-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .footer-menu .menu-link i {
        font-size: 0.8rem;
        margin-right: 0.3rem;
    }
    
    .footer-copyright {
        justify-content: center;
        margin-bottom: 0.5rem;
    }
}

/* ===========================================
   iOS STYLE NOTIFICATIONS
   ========================================== */

/* iOS Style Notification Container */
.ios-notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    pointer-events: none;
}

/* iOS Style Notification */
.ios-notification {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 16px 20px;
    margin-bottom: 10px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 400px;
    min-width: 300px;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ios-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.ios-notification.hide {
    transform: translateX(100%);
    opacity: 0;
}

/* Notification Icon */
.ios-notification-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    flex-shrink: 0;
}

.ios-notification-icon.success {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
}

.ios-notification-icon.info {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
}

.ios-notification-icon.warning {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.ios-notification-icon.error {
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
}

/* Notification Content */
.ios-notification-content {
    flex: 1;
    min-width: 0;
}

.ios-notification-title {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 2px 0;
    line-height: 1.3;
}

.ios-notification-message {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

/* Dark Theme */
[data-bs-theme="dark"] .ios-notification {
    background: rgba(30, 30, 46, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.2);
}

[data-bs-theme="dark"] .ios-notification-title {
    color: #ffffff;
}

[data-bs-theme="dark"] .ios-notification-message {
    color: rgba(255, 255, 255, 0.7);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .ios-notification-container {
        top: 10px;
        right: 10px;
        left: 10px;
    }
    
    .ios-notification {
        max-width: none;
        min-width: auto;
        width: 100%;
    }
}

/* ===========================================
   MODERN PAGE HEADER
   ========================================== */

/* Modern Page Header */
.modern-page-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.modern-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.02) 0%, transparent 50%, rgba(102, 126, 234, 0.02) 100%);
    pointer-events: none;
}

/* Page Header Content */
.page-header-content {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.page-header-text {
    flex: 1;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    line-height: 1.1;
    position: relative;
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
}

/* TypewriterJS Container Styling */
#typewriter-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    min-height: 3rem;
    display: flex;
    align-items: center;
}

/* TypewriterJS Cursor Styling */
#typewriter-container .Typewriter__cursor {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    font-size: 2.5rem;
}

.page-subtitle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.service-badge {
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.service-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.service-badge.vps {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.service-badge.vds {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.service-badge.dedicated {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.service-badge.domain {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.service-text {
    font-size: 1rem;
    font-weight: 600;
    color: #6b7280;
    margin-left: 0.5rem;
}

.page-header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Dark Theme */
[data-bs-theme="dark"] .modern-page-header {
    background: linear-gradient(135deg, #1e1e2e 0%, #2a2d3a 100%);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

[data-bs-theme="dark"] #typewriter-container,
[data-bs-theme="dark"] #typewriter-container .Typewriter__cursor {
    background: linear-gradient(135deg, #a5b4fc 0%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-bs-theme="dark"] .service-text {
    color: rgba(255, 255, 255, 0.7);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modern-page-header {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .page-header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .service-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .page-header-actions {
        justify-content: center;
        margin-top: 1rem;
    }
}

/* ===========================================
   HOSTING SERVICES FILTER SECTION
   ========================================== */

/* Filtreleme bölümü */
.services-filter-section {
    background: rgba(248, 250, 252, 0.6);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.services-filter-section:hover {
    background: rgba(248, 250, 252, 0.8);
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.05);
}

[data-bs-theme="dark"] .services-filter-section {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(71, 85, 105, 0.8);
}

[data-bs-theme="dark"] .services-filter-section:hover {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
}

/* Form kontrolleri */
.services-filter-section .form-label {
    color: #374151;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

[data-bs-theme="dark"] .services-filter-section .form-label {
    color: #d1d5db;
}

.services-filter-section .form-select,
.services-filter-section .form-control {
    border: 1px solid rgba(209, 213, 219, 0.6);
    border-radius: 10px;
    font-size: 13px;
    height: 38px;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.8);
}

.services-filter-section .form-select:focus,
.services-filter-section .form-control:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: rgba(255, 255, 255, 1);
}

[data-bs-theme="dark"] .services-filter-section .form-select,
[data-bs-theme="dark"] .services-filter-section .form-control {
    background: rgba(31, 41, 55, 0.8);
    border-color: rgba(75, 85, 99, 0.6);
    color: #f9fafb;
}

[data-bs-theme="dark"] .services-filter-section .form-select:focus,
[data-bs-theme="dark"] .services-filter-section .form-control:focus {
    background: rgba(31, 41, 55, 1);
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.15);
}

/* Input group styling */
.services-filter-section .input-group-text {
    background: rgba(249, 250, 251, 0.8);
    border: 1px solid rgba(209, 213, 219, 0.6);
    border-right: none;
    color: #6b7280;
    border-radius: 10px 0 0 10px;
}

.services-filter-section .input-group .form-control {
    border-left: none;
    border-radius: 0 10px 10px 0;
}

[data-bs-theme="dark"] .services-filter-section .input-group-text {
    background: rgba(55, 65, 81, 0.8);
    border-color: rgba(75, 85, 99, 0.6);
    color: #9ca3af;
}

/* Filtreleme butonları */
.filter-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.filter-actions .btn {
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.filter-actions .btn-light-primary {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.filter-actions .btn-light-primary:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    color: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.filter-actions .btn-light-secondary {
    background: rgba(107, 114, 128, 0.1);
    border: 1px solid rgba(107, 114, 128, 0.2);
    color: #6b7280;
}

.filter-actions .btn-light-secondary:hover {
    background: rgba(107, 114, 128, 0.15);
    border-color: rgba(107, 114, 128, 0.3);
    color: #4b5563;
    transform: translateY(-1px);
}

/* Filtreleme sonuçları */
.filter-results {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-results .text-muted {
    font-size: 12px;
    font-weight: 500;
}

/* Aktif filtre göstergesi */
.filter-active-indicator {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.filter-active-indicator i {
    font-size: 10px;
}

/* Responsive filtreleme */
@media (max-width: 768px) {
    .services-filter-section {
        padding: 16px;
    }
    
    .services-filter-section .row {
        gap: 16px !important;
    }
    
    .filter-actions {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }
    
    .filter-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .services-filter-section .d-flex {
        flex-direction: column;
        gap: 16px;
        align-items: stretch !important;
    }
    
    .filter-results {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .services-filter-section .col-lg-3,
    .services-filter-section .col-md-6 {
        margin-bottom: 16px;
    }
}

/* Tablet responsive rules (max-width: 1024px) */
@media (max-width: 1024px) {
    /* Hide floating buttons on tablet too */
    .floating-support-btn,
    .floating-billing-btn,
    .floating-announcements-btn {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        transform: translateX(100%) !important;
    }
    
    /* Show mobile bottom menu on tablet */
    .mobile-bottom-menu {
        position: fixed;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
        backdrop-filter: blur(20px);
        border-radius: 20px;
        padding: 8px 12px;
        display: flex !important;
        gap: 4px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.2);
        z-index: 1000;
        max-width: calc(100vw - 20px);
        min-width: 400px;
        height: 70px;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 8px 12px;
        border-radius: 12px;
        text-decoration: none;
        color: #64748b;
        transition: all 0.3s ease;
        position: relative;
        flex: 1;
        min-width: 60px;
        max-width: 80px;
        height: 54px;
    }
    
    .mobile-menu-item:hover {
        background: rgba(99, 102, 241, 0.1);
        color: #6366f1;
        transform: translateY(-2px);
    }
    
    .mobile-menu-item.active {
        background: linear-gradient(135deg, #6366f1, #8b5cf6);
        color: white;
        box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    }
    
    /* Mode switcher specific styles for tablet */
    .mobile-menu-item.mode-switcher {
        border-right: 1px solid rgba(148, 163, 184, 0.2);
        margin-right: 4px;
    }
    
    .mobile-menu-item.mode-switcher:last-of-type {
        border-right: none;
        margin-right: 8px;
    }
    
    .mobile-menu-item.mode-switcher.active {
        background: linear-gradient(135deg, #059669, #10b981);
        color: white;
        box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
    }
    
    .mobile-menu-item i {
        font-size: 18px;
        margin-bottom: 4px;
        color: #4a5568; /* Dark gray for light mode */
    }
    
    .mobile-menu-item span {
        font-size: 11px;
        font-weight: 500;
        line-height: 1;
    }
    
    body {
        padding-bottom: 80px;
    }
}

/* Çok küçük ekranlar için ek optimizasyonlar */
@media (max-width: 480px) {
    /* Header */
    .app-container {
        padding: 0 10px;
    }
    
    .modern-logo-container .logo-wrapper {
        max-width: 100px;
    }
    
    .mode-tabs {
        padding: 1px;
        gap: 1px;
    }
    
    .mode-tab {
        padding: 4px 6px;
        font-size: 11px;
        min-width: 35px;
    }
    
    .mode-tab i {
        font-size: 12px;
    }
    
    /* User Profile */
    .user-avatar {
        width: 28px;
        height: 28px;
    }
    
    .avatar-circle {
        width: 28px;
        height: 28px;
    }
    
    .avatar-text {
        font-size: 10px;
    }
    
    .action-btn {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }
    
    /* Dashboard */
    .hosting-dashboard {
        padding: 10px 0;
    }
    
    .quick-actions-bar {
        margin-bottom: 15px;
    }
    
    .page-heading {
        font-size: 18px;
    }
    
    .page-title {
        font-size: 11px;
    }
    
    /* Welcome Banner */
    .hosting-welcome-banner {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .welcome-text h1 {
        font-size: 20px;
    }
    
    .welcome-text p {
        font-size: 13px;
    }
    
    .welcome-stats {
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .stat-item {
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 18px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    /* Stats Cards */
    .row.g-5.g-xl-8 {
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .hosting-stat-card {
        margin-bottom: 10px;
    }
    
    .hosting-stat-card .card-header {
        padding: 10px 10px 0;
    }
    
    .hosting-stat-card .card-body {
        padding: 8px 10px 10px;
    }
    
    .hosting-stat-card .fs-2 {
        font-size: 1rem;
    }
    
    .hosting-stat-card .fs-2hx {
        font-size: 1.5rem;
    }
    
    .hosting-stat-card .card-label {
        font-size: 12px;
    }
    
    /* Alerts */
    .alert {
        padding: 10px;
        margin-bottom: 10px;
    }
    
    .alert .fs-2 {
        font-size: 1rem;
    }
    
    .alert h4 {
        font-size: 14px;
    }
    
    .alert p {
        font-size: 12px;
    }
    
    .alert .btn {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    /* Header Navigation - Tablet */
    .hosting-header {
        padding: 10px 0;
    }
    
    .modern-logo-container .logo-wrapper {
        max-width: 120px;
    }
    
    .hosting-brand .hosting-title {
        font-size: 16px;
    }
    
    .hosting-brand .hosting-subtitle {
        font-size: 12px;
    }
    
    .service-mode-switcher {
        margin-left: 12px;
    }
    
    .mode-tab {
        padding: 6px 8px;
        font-size: 12px;
        min-width: 40px;
    }
    
    .mode-tab i {
        font-size: 14px;
    }
    
    /* User Profile - Tablet */
    .user-info-section {
        gap: 8px;
    }
    
    .user-details .user-name {
        font-size: 13px;
    }
    
    .user-details .user-role {
        font-size: 11px;
    }
    
    .user-actions {
        gap: 6px;
    }
    
    .action-btn {
         width: 30px;
         height: 30px;
         font-size: 11px;
     }
}

/* Çok küçük ekranlar için ek optimizasyonlar */
@media (max-width: 480px) {
    /* Header */
    .app-container {
        padding: 0 10px;
    }
    
    .modern-logo-container .logo-wrapper {
        max-width: 100px;
    }
    
    .mode-tabs {
        padding: 1px;
        gap: 1px;
    }
    
    .mode-tab {
        padding: 4px 6px;
        font-size: 11px;
        min-width: 35px;
    }
    
    .mode-tab i {
        font-size: 12px;
    }
    
    /* User Profile */
    .user-avatar {
        width: 28px;
        height: 28px;
    }
    
    .avatar-circle {
        width: 28px;
        height: 28px;
    }
    
    .avatar-text {
        font-size: 10px;
    }
    
    .action-btn {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }
    
    /* Dashboard */
    .hosting-dashboard {
        padding: 10px 0;
    }
    
    .quick-actions-bar {
        margin-bottom: 15px;
    }
    
    .page-heading {
        font-size: 18px;
    }
    
    .page-title {
        font-size: 11px;
    }
    
    /* Welcome Banner */
    .hosting-welcome-banner {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .welcome-text h1 {
        font-size: 20px;
    }
    
    .welcome-text p {
        font-size: 13px;
    }
    
    .welcome-stats {
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .stat-item {
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 18px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    /* Stats Cards */
    .row.g-5.g-xl-8 {
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .hosting-stat-card {
        margin-bottom: 10px;
    }
    
    .hosting-stat-card .card-header {
        padding: 10px 10px 0;
    }
    
    .hosting-stat-card .card-body {
        padding: 8px 10px 10px;
    }
    
    .hosting-stat-card .fs-2 {
        font-size: 1rem;
    }
    
    .hosting-stat-card .fs-2hx {
        font-size: 1.5rem;
    }
    
    .hosting-stat-card .card-label {
        font-size: 12px;
    }
    
    /* Alerts */
    .alert {
        padding: 10px;
        margin-bottom: 10px;
    }
    
    .alert .fs-2 {
        font-size: 1rem;
    }
    
    .alert h4 {
        font-size: 14px;
    }
    
    .alert p {
        font-size: 12px;
    }
    
    .alert .btn {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    /* Header Navigation */
    .hosting-header {
        padding: 8px 0;
    }
    
    .app-container {
        padding: 0 8px;
    }
    
    .modern-logo-container .logo-wrapper {
        max-width: 80px;
    }
    
    .hosting-brand {
        display: none;
    }
    
    .service-mode-switcher {
        display: none;
    }
}

/* Web görünümünde mode switcher'ı göster */
@media (min-width: 992px) {
    .service-mode-switcher {
        display: flex !important;
    }
}

@media (max-width: 991px) {
    /* User Profile Mobile */
    .modern-user-profile {
        flex-direction: column;
        gap: 4px;
    }
    
    .user-info-section {
        display: none;
    }
    
    .user-actions {
        gap: 4px;
    }
    
    .action-btn {
        width: 24px;
        height: 24px;
        font-size: 8px;
    }
    
    /* Floating Buttons - Hide on Mobile */
    .floating-support-btn,
    .floating-billing-btn,
    .floating-announcements-btn {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        transform: translateX(100%) !important;
    }
    
    /* Mobile Bottom Menu */
    .mobile-bottom-menu {
        position: fixed;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
        backdrop-filter: blur(20px);
        border-radius: 20px;
        padding: 8px 12px;
        display: flex;
        gap: 4px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.2);
        z-index: 1000;
        max-width: calc(100vw - 20px);
        min-width: 320px;
        height: 60px;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 6px 8px;
        border-radius: 12px;
        text-decoration: none;
        color: #64748b;
        transition: all 0.3s ease;
        position: relative;
        flex: 1;
        min-width: 50px;
        max-width: 70px;
        height: 44px;
    }
    
    .mobile-menu-item:hover {
        background: rgba(99, 102, 241, 0.1);
        color: #6366f1;
        transform: translateY(-2px);
    }
    
    .mobile-menu-item.active {
        background: linear-gradient(135deg, #6366f1, #8b5cf6);
        color: white;
        box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    }
    
    /* Mode switcher specific styles */
    .mobile-menu-item.mode-switcher {
        border-right: 1px solid rgba(148, 163, 184, 0.2);
        margin-right: 4px;
    }
    
    .mobile-menu-item.mode-switcher:last-of-type {
        border-right: none;
        margin-right: 8px;
    }
    
    .mobile-menu-item.mode-switcher.active {
        background: linear-gradient(135deg, #059669, #10b981);
        color: white;
        box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
    }
    
    .mobile-menu-item i {
        font-size: 16px;
        margin-bottom: 2px;
        color: #4a5568; /* Dark gray for light mode */
    }
    
    .mobile-menu-item span {
        font-size: 10px;
        font-weight: 500;
        line-height: 1;
    }
    
    .mobile-menu-badge {
        position: absolute;
        top: 2px;
        right: 2px;
        background: #ef4444;
        color: white;
        border-radius: 10px;
        padding: 2px 6px;
        font-size: 10px;
        font-weight: 600;
        min-width: 18px;
        height: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
    }
    
    /* Add bottom padding to body to prevent content overlap */
    body {
        padding-bottom: 80px;
    }
    
    /* Dark mode styles for mobile menu */
    [data-bs-theme="dark"] .mobile-bottom-menu {
        background: linear-gradient(135deg, rgba(30, 30, 46, 0.95), rgba(45, 45, 65, 0.95));
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    [data-bs-theme="dark"] .mobile-menu-item {
        color: rgba(255, 255, 255, 0.7);
    }
    
    [data-bs-theme="dark"] .mobile-menu-item:hover {
        background: rgba(99, 102, 241, 0.2);
        color: #a5b4fc;
    }
    
    [data-bs-theme="dark"] .mobile-menu-item.active {
        background: linear-gradient(135deg, #6366f1, #8b5cf6);
        color: white;
    }
    
    [data-bs-theme="dark"] .mobile-menu-item.mode-switcher {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    [data-bs-theme="dark"] .mobile-menu-item.mode-switcher.active {
        background: linear-gradient(135deg, #059669, #10b981);
        color: white;
    }
    
    /* Buttons */
    .btn-lg {
        font-size: 14px;
        padding: 8px 16px;
    }
    
    .btn {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    /* Header Navigation */
    .hosting-header {
        padding: 8px 0;
    }
    
    .app-container {
        padding: 0 8px;
    }
    
    .modern-logo-container .logo-wrapper {
        max-width: 80px;
    }
    
    .hosting-brand {
        display: none;
    }
    
    .service-mode-switcher {
        margin-left: 8px;
    }
    
    .mode-tabs {
        padding: 0;
        gap: 0;
    }
    
    .mode-tab {
        padding: 2px 4px;
        font-size: 10px;
        min-width: 30px;
    }
    
    .mode-tab span {
        display: none;
    }
    
    .mode-tab i {
        font-size: 10px;
    }
    
    /* User Profile Mobile */
    .modern-user-profile {
        flex-direction: column;
        gap: 4px;
    }
    
    .user-info-section {
        display: none;
    }
    
    .user-actions {
        gap: 4px;
    }
    
    .action-btn {
        width: 24px;
        height: 24px;
        font-size: 8px;
    }
}

/* Filtreleme animasyonları */
.services-container.filtering {
    opacity: 0.6;
    transform: scale(0.98);
    transition: all 0.3s ease;
}

.services-container.filtered {
    opacity: 1;
    transform: scale(1);
}

/* Boş sonuç durumu */
.no-results-message {
    text-align: center;
    padding: 40px 20px;
    background: rgba(249, 250, 251, 0.5);
    border: 2px dashed rgba(209, 213, 219, 0.6);
    border-radius: 16px;
    margin: 20px 0;
}

.no-results-message i {
    font-size: 48px;
    color: #d1d5db;
    margin-bottom: 16px;
}

.no-results-message h4 {
    color: #6b7280;
    margin-bottom: 8px;
}

.no-results-message p {
    color: #9ca3af;
    font-size: 14px;
}

[data-bs-theme="dark"] .no-results-message {
    background: rgba(31, 41, 55, 0.5);
    border-color: rgba(75, 85, 99, 0.6);
}

[data-bs-theme="dark"] .no-results-message i {
    color: #4b5563;
}

[data-bs-theme="dark"] .no-results-message h4 {
    color: #9ca3af;
}

[data-bs-theme="dark"] .no-results-message p {
    color: #6b7280;
}

/* ===========================================
   FILTER TOGGLE BUTTON & ANIMATIONS
   ========================================== */

/* Toggle filtre butonu */
/* toggleFilters butonunu btn-welcome ile aynı görünüme getir */
#toggleFilters.btn-welcome {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: #ffffff;
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(102, 126, 234, 0.35);
}

#toggleFilters.btn-welcome:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(102, 126, 234, 0.45);
}

#toggleFilters.btn-welcome.active {
    filter: brightness(1.02);
}

/* Toggle butonu ikonu animasyonu */
#toggleFilters i {
    transition: transform 0.3s ease;
}

#toggleFilters.active i {
    transform: rotate(180deg);
}

[data-bs-theme="dark"] #toggleFilters.btn-welcome {
    box-shadow: 0 6px 18px rgba(102, 126, 234, 0.25);
}

[data-bs-theme="dark"] #toggleFilters.btn-welcome:hover {
    box-shadow: 0 10px 24px rgba(102, 126, 234, 0.35);
}

/* Filtreleme bölümü slide animasyonu */
.services-filter-section {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: top;
    overflow: hidden;
}

.services-filter-section.show {
    display: block !important;
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.services-filter-section.hide {
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-20px) scaleY(0.8);
        max-height: 0;
    }
    50% {
        opacity: 0.5;
        transform: translateY(-10px) scaleY(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scaleY(1);
        max-height: 500px;
    }
}

@keyframes slideUp {
    0% {
        opacity: 1;
        transform: translateY(0) scaleY(1);
        max-height: 500px;
    }
    50% {
        opacity: 0.5;
        transform: translateY(-10px) scaleY(0.9);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px) scaleY(0.8);
        max-height: 0;
    }
}

/* Filtreleme durumu göstergesi */
.filter-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-status .text-muted {
    font-size: 11px;
    font-weight: 500;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 4px;
}

.filter-status i {
    color: #3b82f6;
    font-size: 10px;
}

[data-bs-theme="dark"] .filter-status .text-muted {
    color: #9ca3af;
}

[data-bs-theme="dark"] .filter-status i {
    color: #60a5fa;
}

/* Real-time filtreleme göstergesi */
.filter-input-active {
    border-color: #10b981 !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1) !important;
    background: rgba(16, 185, 129, 0.02) !important;
}

.filter-input-active + .input-group-text {
    border-color: #10b981 !important;
    background: rgba(16, 185, 129, 0.05) !important;
    color: #059669 !important;
}

/* Filtreleme sonuçları animasyonu */
.filter-results-updating {
    opacity: 0.6;
    transform: scale(0.98);
    transition: all 0.2s ease;
}

.filter-results-updated {
    opacity: 1;
    transform: scale(1);
}

/* Responsive toggle butonu */
@media (max-width: 768px) {
    #toggleFilters {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .filter-status {
        display: none; /* Mobile'da gizle */
    }
    
    .filter-actions {
        justify-content: center;
        width: 100%;
    }
}

/* Filtreleme bölümü responsive animasyonları */
@media (max-width: 576px) {
    .services-filter-section.show {
        animation: slideDownMobile 0.4s ease-out forwards;
    }
    
    @keyframes slideDownMobile {
        0% {
            opacity: 0;
            transform: translateY(-15px);
            max-height: 0;
        }
        100% {
            opacity: 1;
            transform: translateY(0);
            max-height: 600px;
        }
    }
}

/* Yeni durumlar için stiller */
.status-badge.payment-pending {
    background: #fff3cd;
    color: #664d03;
    border: 1px solid #ffecb5;
    animation: pulse-payment 2s infinite;
}

.status-badge.setup-pending {
    background: #cff4fc;
    color: #055160;
    border: 1px solid #9eeaf9;
    animation: pulse-setup 2s infinite;
}

@keyframes pulse-payment {
    0% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 193, 7, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0); }
}

@keyframes pulse-setup {
    0% { box-shadow: 0 0 0 0 rgba(13, 202, 240, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(13, 202, 240, 0); }
    100% { box-shadow: 0 0 0 0 rgba(13, 202, 240, 0); }
}

/* Payment Info Styles */
.payment-info {
    background: rgba(255, 193, 7, 0.1);
    border-radius: 6px;
    padding: 8px;
    border-left: 3px solid #ffc107;
}

.payment-info small {
    display: block;
    line-height: 1.4;
}

/* Dark Mode için ödeme durumu stilleri */
[data-bs-theme="dark"] .status-badge.payment-pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

[data-bs-theme="dark"] .status-badge.setup-pending {
    background: rgba(13, 202, 240, 0.2);
    color: #0dcaf0;
    border: 1px solid rgba(13, 202, 240, 0.3);
}

[data-bs-theme="dark"] .payment-info {
    background: rgba(255, 193, 7, 0.15);
    border-left: 3px solid #ffc107;
}

/* Service Item için ödeme durumu */
.service-item.payment-pending {
    border-left: 4px solid #ffc107;
    background: rgba(255, 193, 7, 0.05);
}

.service-item.setup-pending {
    border-left: 4px solid #0dcaf0;
    background: rgba(13, 202, 240, 0.05);
}

[data-bs-theme="dark"] .service-item.payment-pending {
    background: rgba(255, 193, 7, 0.1);
}

[data-bs-theme="dark"] .service-item.setup-pending {
    background: rgba(13, 202, 240, 0.1);
} 

/* Setup Progress Status */
.service-item.setup-progress {
    border-color: #8b5cf6;
    background-color: rgba(139, 92, 246, 0.05);
}

.service-item.setup-progress .status-badge {
    background-color: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

[data-bs-theme="dark"] .service-item.setup-progress {
    border-color: #8b5cf6;
    background-color: rgba(139, 92, 246, 0.1);
}

[data-bs-theme="dark"] .service-item.setup-progress .status-badge {
    background-color: rgba(139, 92, 246, 0.2);
    color: #a78bfa;
}