﻿/* Avatar Circle */
.avatar-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

/* Top Row Styling */
.top-row {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Sidebar Top Row */
.navbar-dark {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Sidebar Navigation */
.nav-scrollable {
    background: linear-gradient(to bottom, #2c3e50 0%, #34495e 100%);
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    border-radius: 8px;
    gap: 10px;
    padding: 12px 16px !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    line-height: 1.4;
}

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white !important;
        transform: translateX(5px);
    }

    .nav-link.active {
        background: rgba(255, 255, 255, 0.15);
        color: white !important;
        font-weight: 600;
    }

.nav-icon {
    font-size: 1.2rem;
    margin-right: 10px;
    line-height: 1;
    vertical-align: middle;
    min-width: 24px;
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    border-radius: 8px;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.dropdown-item {
    padding: 10px 16px;
    transition: all 0.2s ease;
}

    .dropdown-item:hover:not(.disabled) {
        background: #f8f9fa;
        transform: translateX(5px);
    }

    .dropdown-item i {
        width: 20px;
        margin-right: 8px;
    }

/* Cards */
.card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
    }

/* Ticket Cards */
.ticket-card {
    transition: all 0.3s ease;
    border-left: 4px solid #0d6efd;
}

    .ticket-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15) !important;
        border-left-color: #0056b3;
    }

/* Timeline */
.timeline {
    position: relative;
    padding-left: 30px;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 8px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: #e9ecef;
    }

.timeline-item {
    position: relative;
    margin-bottom: 20px;
}

.timeline-marker {
    position: absolute;
    left: -26px;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 3px solid white;
}

.timeline-content {
    padding-left: 10px;
}

/* Comments */
.comment-item {
    transition: all 0.2s ease;
}

    .comment-item:hover {
        background: #e9ecef !important;
        transform: translateX(5px);
    }

/* Buttons */
.btn {
    transition: all 0.2s ease;
    border-radius: 6px;
}

    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

/* Badges */
.badge {
    padding: 6px 12px;
    font-weight: 500;
    border-radius: 4px;
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .avatar-circle {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

.login-wrapper {
    min-height: 100vh;
    background: linear-gradient(135deg, #1d3557, #457b9d);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.login-card {
    background: #ffffff;
    width: 100%;
    max-width: 420px;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    animation: fadeIn 0.6s ease;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.logo {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.login-header h2 {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.subtitle {
    color: #6c757d;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

    .form-group label {
        font-weight: 600;
        margin-bottom: 0.3rem;
        display: block;
    }

.form-control {
    border-radius: 10px;
    padding: 0.6rem 0.75rem;
    border: 1px solid #ced4da;
}

    .form-control:focus {
        border-color: #457b9d;
        box-shadow: 0 0 0 0.2rem rgba(69, 123, 157, 0.25);
    }

.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.btn-login {
    width: 100%;
    background: #1d3557;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 0.75rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

    .btn-login:hover {
        background: #16304d;
        transform: translateY(-1px);
    }

.footer-links {
    text-align: center;
    margin-top: 1.5rem;
}

    .footer-links a {
        text-decoration: none;
        font-weight: 500;
        color: #457b9d;
    }

        .footer-links a:hover {
            text-decoration: underline;
        }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* User Dropdown Styles */
.dropdown-item {
    transition: all 0.2s ease;
    cursor: pointer;
}

    .dropdown-item:hover {
        background-color: #f8f9fa;
        padding-left: 1rem !important;
    }

.btn-link:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

/* Avatar circle hover */
.avatar-circle {
    transition: transform 0.2s ease;
}

.btn-link:hover .avatar-circle {
    transform: scale(1.05);
}

/* Stat Cards Animation */
.stat-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

    .stat-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15) !important;
    }

    .stat-card .fs-1 {
        transition: transform 0.3s ease;
    }

    .stat-card:hover .fs-1 {
        transform: scale(1.15) rotate(5deg);
    }

/* Avatar Circle */
.avatar-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

/* Rest of your existing CSS... */