:root {
    --success-color: #10b981;
}

.sidebar-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-nav-link .kyc-badge {
    position: static;
    transform: none;
    margin-left: 8px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.kyc-verified-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.kyc-verified-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.kyc-verified-badge i {
    font-size: 14px;
}

.kyc-verified-badge span {
    white-space: nowrap;
}
