.main-container {
    height: 86vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dashboard Content */
.dashboard-card {
    width: 50%;
    background: linear-gradient(135deg, #faac7f 0%, #eb6935 100%);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    color: white;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(108, 92, 231, 0.3);
}

.dashboard-card h1 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
}

.dashboard-card h1 i {
    font-size: 36px;
}

/* Decorative Elements */
.card-circle {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.circle-1 {
    width: 150px;
    height: 150px;
    top: -50px;
    right: -50px;
}

.circle-2 {
    width: 100px;
    height: 100px;
    bottom: -30px;
    left: 30%;
}

/* Special styling for curry pot icon */
.shop {
    font-size: 38px;
    margin-right: 15px;
    color: #ececec;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
/* Mobile Responsive Styles */
@media (max-width: 767px) {
    .dashboard-card {
        width: 90%; /* Takes more width on mobile */
        padding: 20px; /* Slightly less padding */
        margin: 0 auto 20px; /* Center the card */
    }

    .dashboard-card h1 {
        font-size: 26px; /* Smaller font size */
        gap: 10px; /* Less gap between icon and text */
    }

    .dashboard-card h1 i {
        font-size: 28px; /* Smaller icon size */
    }

    .shop {
        font-size: 30px; /* Smaller shop icon */
        margin-right: 10px; /* Less margin */
    }

    /* Adjust decorative circles for mobile */
    .card-circle {
        .circle-1 {
            width: 100px;
            height: 100px;
            top: -30px;
            right: -30px;
        }
        .circle-2 {
            width: 70px;
            height: 70px;
            bottom: -20px;
        }
    }

    /* Adjust hover effects for touch devices */
    .dashboard-card:hover {
        transform: none; /* Remove transform on mobile */
        box-shadow: 0 5px 15px rgba(108, 92, 231, 0.2); /* Keep original shadow */
    }
}
