/* Account Page Styles - PaketSatis16 Theme Uyumlu */
.divider{
    display: none;   
}
.account-section {
    padding: 40px 0;
    background-color: #f7f6ff;
    min-height: calc(100vh - 200px);
}

.account-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    gap: 24px;
}

/* Sidebar Styles */
.account-sidebar {
    background: white;
    border-radius: 12px;
    width: 280px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

@media (max-width: 991px) {
    .account-sidebar {
        width: 100%;
    }
}

.user-profile {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e9ecef;
}

.user-avatar {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f7f6ff;
}

.user-status {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid white;
}

.user-status.online {
    background-color: #10b981;
}

.user-name {
    font-size: 18px;
    font-weight: 600;
    color: #3F4250;
    margin-bottom: 4px;
}

.user-email {
    font-size: 14px;
    color: #8D98B2;
    margin: 0;
}

/* Navigation Links */
.account-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px;
}

.account-nav .nav-link {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: 8px;
    color: #3F4250;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

.account-nav .nav-link i {
    width: 20px;
    margin-right: 12px;
    font-size: 16px;
}

.account-nav .nav-link:hover {
    background-color: #f7f6ff;
    color: #6366f1;
}

.account-nav .nav-link.active {
    background-color: #6366f1;
    color: white;
}

.account-nav .nav-link.active i {
    color: white;
}

.account-nav .nav-link.text-danger:hover {
    background-color: #fee2e2;
    color: #dc2626;
}

.account-nav .badge {
    margin-left: auto;
    background-color: #6366f1;
    color: white;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
}

.account-nav .nav-link.active .badge {
    background-color: white;
    color: #6366f1;
}

/* Balance Section */
.account-balance {
    padding: 16px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 12px;
    color: white;
}

.balance-info {
    margin-bottom: 12px;
}

.balance-label {
    display: block;
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 4px;
}

.balance-amount {
    display: block;
    font-size: 24px;
    font-weight: 700;
}

.btn-add-balance {
    width: 100%;
    padding: 10px;
    background-color: white;
    color: #6366f1;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.btn-add-balance:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #6366f1;
}

/* Content Area */
.account-content {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Profile Form */
.profile-form .divider {
    margin: 32px 0;
    text-align: center;
    position: relative;
}

.profile-form .divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background-color: #e9ecef;
}

.profile-form .divider span {
    background-color: white;
    padding: 0 16px;
    position: relative;
    color: #8D98B2;
    font-size: 14px;
    font-weight: 500;
}

.profile-form .btn-primary {
    background-color: #6366f1;
    border-color: #6366f1;
    padding: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.profile-form .btn-primary:hover {
    background-color: #4f46e5;
    border-color: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* Dashboard Cards */
.dashboard-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.dashboard-card .card-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #3F4250;
    margin: 0;
}

/* Section Header */
.section-header {
    margin-bottom: 32px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #3F4250;
    margin-bottom: 8px;
}

.section-header p {
    color: #8D98B2;
    font-size: 16px;
    margin: 0;
}

/* Status Badges */
.status-badge {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
}

.status-badge.in_progress,
.status-in_progress {
    background-color: #dbeafe;
    color: #2563eb;
}

.status-badge.delivered,
.status-delivered {
    background-color: #d1fae5;
    color: #059669;
}

.status-badge.canceled,
.status-canceled {
    background-color: #fee2e2;
    color: #dc2626;
}

.status-badge.waiting,
.status-waiting {
    background-color: #fef3c7;
    color: #d97706;
}

.status-badge.pending {
    background-color: #fef3c7;
    color: #d97706;
}

.status-badge.paid {
    background-color: #d1fae5;
    color: #059669;
}

/* Ticket Items */
.ticket-item {
    display: flex;
    align-items: center;
    padding: 16px;
    border-radius: 8px;
    background-color: #f7f6ff;
    margin-bottom: 12px;
    transition: all 0.2s ease;
}

.ticket-item:hover {
    background-color: #ede9fe;
    transform: translateX(4px);
}

.ticket-icon {
    width: 40px;
    height: 40px;
    background-color: #6366f1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
}

.ticket-icon i {
    color: white;
    font-size: 18px;
}

.ticket-info {
    flex: 1;
}

.ticket-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #3F4250;
    margin-bottom: 4px;
}

.ticket-info p {
    font-size: 13px;
    color: #8D98B2;
    margin: 0;
}

.ticket-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-left: 12px;
}

.ticket-status.waiting {
    background-color: #f59e0b;
}

.ticket-status.answered {
    background-color: #10b981;
}

/* Order Cards */
.account-order-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 16px;
    transition: all 0.2s ease;
}

.account-order-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
    .account-wrapper {
        flex-direction: column;
    }
    
    .account-sidebar {
        width: 100%;
    }
}

/* Button Styles */



/* Search Form */
.search-input-wrapper .input-group-text {
    background-color: #f7f6ff;
    border-color: #e9ecef;
}

.search-input-wrapper .form-control {
    border-color: #e9ecef;
}

.search-input-wrapper .form-control:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 0.25rem rgba(99, 102, 241, 0.1);
}

/* Footer Override - Eski tema CSS çakışmalarını düzelt */
footer ul,
footer ol {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

footer li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

footer li::before,
footer li::marker {
    display: none !important;
    content: none !important;
}

footer select,
footer input[type="checkbox"],
footer input[type="radio"] {
    display: none !important;
}

/* Footer link item'ları için özel stil */
footer .footer-link-item {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-bottom: 8px !important;
    list-style: none !important;
}

footer .footer-link-item::before {
    display: none !important;
}

footer .footer-link-item .dot {
    width: 10px !important;
    height: 10px !important;
    background-color: #FFA524 !important;
    border-radius: 10px !important;
    flex-shrink: 0 !important;
}

footer .footer-link-item span,
footer .footer-link-item a {
    font-weight: 500 !important;
    font-size: 14px !important;
    color: #fff !important;
    text-decoration: none !important;
}

footer .footer-link-body {
    padding: 16px !important;
    background-color: #262B36 !important;
    border-radius: 12px !important;
    border: 1px solid #383947 !important;
}

/* Footer header içindeki iconlar */
footer .footer-link-header iconify-icon {
    display: inline-block !important;
    vertical-align: middle !important;
}

/* Menu bullet class'ı varsa gizle (eski tema stili) */
footer .menu-bullet {
    display: none !important;
}

/* Flatpickr takvim widget'ını gizle - Footer'da istenmeyen görünüm */
.flatpickr-calendar {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Flatpickr açık olsa bile gizle */
.flatpickr-calendar.open,
.flatpickr-calendar.inline,
.flatpickr-calendar.rangeMode,
.flatpickr-calendar.animate {
    display: none !important;
    visibility: hidden !important;
}
