﻿
/* Container for the entire widget */
.widget-container {
    height: 100%;
    background-color: #fafafa;
    border: 1px solid rgba(0,0,0,0.125);
    font-family: Nunito, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075);
}

/* Inner padding and accent border */
.widget-content {
    padding: 13px;
    border-radius: 0.375rem;
    border-bottom: 3px solid #0091a7;
    font-size: 16px;
}

/* Header styling */
.widget-title {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    color:#005B94;
}

.widget-title i {
    margin-right: 0.5rem;
}

.widget-divider {
    margin: 1rem 0;
    border: 0;
    border-top: 3px solid #ff5100;
}

/* Individual collection rows */
.bin-row {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.bin-icon {
    min-width: 50px;
    max-width: 100px;
    margin-right: 1rem;
    flex-shrink: 1;
}

.bin-details {
    margin: 0;
    line-height: 1.5;
    color: #212529;
}

.bin-date {
    font-weight: 700;
}

/* Action button */
.btn-report {
    width: 100%;
    padding: 0.5rem 1rem;
    margin-top: 0.5rem;
    background-color: #00852C;
    color: #fff;
    border: #00852C;
    font-size: 16px;
    cursor: pointer;
    font-weight: 400;
    transition: background-color 0.15s ease-in-out;
    text-decoration: none;
    margin-bottom: 10px;
}

.btn-report:hover {
    background-color: #218838 !important;
    color: white;
    text-decoration: none;
}

.widget-button-container {
    text-align: center;
    margin: auto;
    margin-top: 1.5rem;
    display: flex;
}