

.nav-item {
    transition: all 0.3s ease;
    text-decoration: none;
}



.nav-item:hover .nav-icon-circle {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.2) !important;
}

.nav-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.nav-icon-circle i {
    font-size: 1.2rem;
    color: white;
}

.nav-icon-wrapper {
    position: relative;
    display: inline-block;
}

.nav-icon-wrapper .badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.4rem;
}

/* افکت glow برای آیکون‌ها */
.nav-icon-circle.bg-danger {
    box-shadow: 0 0 15px rgba(220, 53, 69, 0.3);
}

.nav-icon-circle.bg-danger:hover {
    box-shadow: 0 0 25px rgba(220, 53, 69, 0.5) !important;
}

.nav-icon-circle.bg-primary {
    box-shadow: 0 0 15px rgba(13, 110, 253, 0.3);
}

.nav-icon-circle.bg-primary:hover {
    box-shadow: 0 0 25px rgba(13, 110, 253, 0.5) !important;
}

.nav-icon-circle.bg-success {
    box-shadow: 0 0 15px rgba(25, 135, 84, 0.3);
}

.nav-icon-circle.bg-success:hover {
    box-shadow: 0 0 25px rgba(25, 135, 84, 0.5) !important;
}

.nav-icon-circle.bg-warning {
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.3);
}

.nav-icon-circle.bg-warning:hover {
    box-shadow: 0 0 25px rgba(255, 193, 7, 0.5) !important;
}

.nav-icon-circle.bg-secondary {
    box-shadow: 0 0 15px rgba(108, 117, 125, 0.3);
}

.nav-icon-circle.bg-secondary:hover {
    box-shadow: 0 0 25px rgba(108, 117, 125, 0.5) !important;
}

/* استایل برای دکمه مرکزی */
.center-add-btn {
    margin-top: -20px;
    position: relative;
}

.center-add-btn .btn {
    width: 60px;
    height: 60px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #3a3a3a 0%, #2d2d2d 100%);
    transition: all 0.3s ease;
    z-index: 1000;
}

.center-add-btn .btn i {
    font-size: 1.5rem;
    color: white;
    transition: transform 0.3s ease;
}

.center-add-btn .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0,0,0,0.4) !important;
}

/* منوی Floating */
.floating-menu {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.floating-menu.show {
    opacity: 1;
    visibility: visible;
}

.floating-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 8px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgb(0, 0, 0);
    min-width: 140px;
}
[data-color-theme="dark"] .floating-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-5px);
}
[data-color-theme="dark"] .floating-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.floating-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.floating-icon i {
    font-size: 1rem;
    color: white;
}

.floating-label {
    color: var(--body-color);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}

/* انیمیشن چرخش آیکون */
#addIcon.rotate {
    transform: rotate(45deg);
}

/* انیمیشن ظاهر شدن آیتم‌ها */
.floating-menu.show .floating-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.floating-menu.show .floating-item:nth-child(1) {
    animation-delay: 0s;
}

.floating-menu.show .floating-item:nth-child(2) {
    animation-delay: 0.1s;
}

.floating-menu.show .floating-item:nth-child(3) {
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
