

body {
    background: linear-gradient(to right, #eef2f3, #dfe9f3);
    font-family: 'Segoe UI', sans-serif;
}

/* Title */
.title {
    text-align: center;
    font-weight: 700;
    color: #1f4e79;
    margin-bottom: 30px;
}

/* Card */
.dashboard-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
}

.dashboard-card:hover {
    transform: scale(1.03);
}

/* Image */
.dashboard-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}
.card-box {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 180px; /* fixed height */
}

.card-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* 🔥 IMPORTANT */
    display: block;
}
.card-box:hover {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
}

/* Bottom Sheet */
.bottom-sheet {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 85%;
    background: #fff;
    border-radius: 20px 20px 0 0;
    transition: 0.4s;
    z-index: 9999;
    overflow-y: auto;
}
.bottom-sheet.active {
    bottom: 0;
}

.close-btn {
    float: right;
    font-size: 25px;
    cursor: pointer;
}
