.home-page {
    flex: 1 0 auto;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.dashboard-card {
    background: linear-gradient(
        160deg,
        #d6eaf8 0%,
        #c4dff2 50%,
        #b0d4f1 100%
    );

    border-radius: var(--radius-lg);

    padding: 3rem;

    box-shadow: var(--shadow-md);

    border: 1px solid rgba(15, 76, 129, 0.08);
}

.profile-picture {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--highlight);
    box-shadow:
        0 0 0 5px rgba(157, 195, 212, 0.25),
        var(--shadow-md);
    transition: transform 0.3s ease;

    &:hover {
        transform: scale(1.04);
    }
}

.profile-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 140px; 
    color: #6c757d; 
    background-color: #f8f9fa;
}

.welcome-title {
    color: var(--primary);
    font-size: 1.7rem;
    font-weight: 700;
}

.welcome-time {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.dashboard-option {
    height: 100%;
    min-height: 160px;

    flex-direction: column;
    text-align: center;
    text-decoration: none;
    color: var(--text-on-primary);

    background: linear-gradient(
        90deg,
        var(--primary) 0%,
        var(--primary-light) 100%
    );

    border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px rgba(15, 76, 129, 0.3);
    position: relative;
    overflow: hidden;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;

    &::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 100%;
        height: 100%;

        background: radial-gradient(
            circle,
            rgba(255, 255, 255, 0.15) 0%,
            transparent 70%
        );

        pointer-events: none;
    }

    &:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(15, 76, 129, 0.4);
        color: var(--text-on-primary);
        transform: scale(1.1);
    }

    .option-icon {
        font-size: 2.3rem;
        margin-bottom: 1rem;
        transition: transform 0.25s ease;

        &:hover {
            transform: scale(1.1);
        }
    }

    .option-title {
        margin: 0;
        font-size: 1rem;
        font-weight: 600;
    }
}