/* Debts Module Premium Styles */

.glass-card {
    background: var(--app-surface) !important;
    border: 1px solid var(--app-border) !important;
    border-radius: 1.25rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
}

.dark-mode .glass-card {
    background: var(--app-surface) !important;
    border: 1px solid var(--app-border) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.hover-lift {
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.25s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.transition-all {
    transition: all 0.25s ease-in-out;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    animation: revealIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.reveal.delay-100 {
    animation-delay: 0.1s;
}

.reveal.delay-200 {
    animation-delay: 0.2s;
}

.reveal.delay-300 {
    animation-delay: 0.3s;
}

@keyframes revealIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Pills Styling */
.custom-pills .nav-link {
    color: var(--app-text-muted);
    border: 1px solid transparent;
    border-radius: 100px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    margin-right: 0.5rem;
}

.custom-pills .nav-link.active {
    background-color: var(--app-primary) !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(var(--bs-primary-rgb), 0.3);
}

.custom-pills .nav-link:not(.active):hover {
    background-color: var(--app-surface-hover);
    color: var(--app-primary);
}

/* Indicator Dot */
.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.section-icon-circle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: var(--bs-primary-bg-subtle);
}

.ls-1 {
    letter-spacing: 0.05em;
}

.ls-2 {
    letter-spacing: 0.1em;
}

.border-dashed {
    border-style: dashed !important;
}

.border-dim {
    border-color: var(--app-border) !important;
}