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

/* Dashboard Content */
.dashboard-card {
    width: 50%;
    background: linear-gradient(135deg, #3ed0c2 0%, #01998a 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 icon */
.mart {
    font-size: 38px;
    margin-right: 15px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
@media (max-width: 767px) {
    .dashboard-card {
        width: 85%; /* Wider to use more screen space */
        padding: 20px;
        margin: 0 auto 20px; /* Center-align */
    }

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

    .dashboard-card h1 {
        font-size: 24px;
        gap: 10px;
    }

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

    .mart {
        font-size: 30px;
        margin-right: 10px;
    }

    /* Further reduce decorative circles */
    .circle-1 {
        width: 100px;
        height: 100px;
        top: -30px;
        right: -30px;
    }

    .circle-2 {
        width: 60px;
        height: 60px;
        bottom: -20px;
    }
}
