/* public/css/report-cards.css  */
.subcategory-card .card,
.category-card {
    min-height: 220px !important;
    margin: 15px;
    padding: 15px;
    border-radius: 8px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all .2s;
}
.subcategory-card .card:hover,
.category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,.1);
    background: #2b2a33;
    color: #fff;
}
.card-body.text-center {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 12px;
}
.card-body.text-center i {
    margin-bottom: 10px;
    font-size: 24px;
    color: black;
    transition: color .3s;
}
.category-card:hover .card-body.text-center i,
.subcategory-card .card:hover .card-body.text-center i {
    color: white;
}

/* --- restore image-upload visuals --- */
.upload-container {
    background-color: #ffffff;          /* or original colour */
    border: 2px solid #e0e0e0;          /* restore light border */
}

.file-input {
    background-color: #f8f9fa;          /* light grey input bg */
}

.upload-btn {
    background-color: #0a58ca;
    color: #ffffff;
}
