/* Custom rounded for user class in SB Admin 2 */
.user .form-control-user {
    border-radius: 10rem;
    padding: 1.5rem 1.25rem;
}

/* Visually Rich Empty State Styles */
.empty-state {
    padding: 3rem 1.5rem;
    text-align: center;
    max-width: 450px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: emptyStateFadeIn 0.5s ease-out;
}

.empty-state-icon {
    font-size: 2.75rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(78, 115, 223, 0.1) 0%, rgba(34, 74, 190, 0.1) 100%);
    color: #4e73df;
    border-radius: 50%;
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 20px rgba(78, 115, 223, 0.1);
    position: relative;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.empty-state:hover .empty-state-icon {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 12px 24px rgba(78, 115, 223, 0.2);
}

.empty-state-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2e384d;
    margin-bottom: 0.5rem;
}

.empty-state-text {
    font-size: 0.875rem;
    color: #858796;
    margin-bottom: 0;
    line-height: 1.5;
}

@keyframes emptyStateFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

