/* css/dashboard.css */
body {
    margin: 0;
    padding: 0;
    background-image: url("/static/images/ab.png");
    background-position: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    min-height: 90vh;
}
a {
    text-decoration: none;
}
.m-card {
    padding: 0.8rem 1rem;
    border-radius: 10px;
    box-shadow: 0 1px 2px #00000026,0 2px 8px #0000000d;
}
.dash-card {
    transition:0.5s;
    cursor:pointer;
    height: 230px;
}
.dash-card:hover{
    transform: scale(1.05);
    box-shadow: 10px 10px 15px rgba(0,0,0,0.3);
}
.dash-card::before, .dash-card::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: scale3d(0, 0, 1);
    transition: transform .3s ease-out 0s;
    background: rgba(255, 255, 255, 0.1);
    content: '';
    pointer-events: none;
}
.dash-card::before {
    transform-origin: left top;
}
.dash-card::after {
    transform-origin: right bottom;
}
.dash-card:hover::before, .dash-card:hover::after, .dash-card:focus::before, .dash-card:focus::after {
    transform: scale3d(1, 1, 1);
}
.green-card{
    background: rgb(97,204,184);
    background: linear-gradient(18deg, rgba(97,204,184,1) 0%, rgba(86,209,186,1) 48%, rgba(13,210,173,1) 100%);
}
.blue-card{
    background: rgb(27,123,224);
    background: linear-gradient(52deg, rgba(27,123,224,1) 0%, rgba(27,123,224,1) 97%);
}
.uv-card {
    background: rgb(92,85,249);
    background: linear-gradient(0deg, rgba(92,85,249,1) 0%, rgba(84,77,241,1) 100%);
}

@media (max-width: 768px) {
    .container {
        padding: 0;
    }
    .main-card {
        border-radius: 0;
    }
}
