/* ======================================================
   BASE
===================================================== */

body {
    background-color: #f3f3f4;
    color: #196d3c;
    font-family: "Segoe UI", system-ui, sans-serif;
}

/* ======================================================
   NAVBAR
===================================================== */

.navbar {
    box-shadow: rgba(32, 36, 72, 0.15) 0px 4px 14px;
}

.navbar-brand {
    color: #196d3c !important;
}
.navbar img {
    width: 40px;
    height: 40px;
}

.navbar .img-text {
    color: #196d3c;
    font-weight: 700;
    font-size: 14px;
}

/* ======================================================
   LINKS
===================================================== */

a {
    text-decoration: none;
}

/* ======================================================
   TABLES
===================================================== */

.custom-tables {
    font-size: 14px;
    border-spacing: 2px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.custom-tables th {
    background-color: #edf9f2;
    border: 1px solid #dfe9f1;
    color: #2f3a2e;
    font-size: 13px;
    font-weight: 600;
    padding: 14px 12px;
    vertical-align: middle;
}

.custom-tables td {
    border: 1px solid #dfe9f1;
    color: #2f3a2e;
    min-width: 110px;
    vertical-align: middle;
}

/* ======================================================
   TABLE UTILS
===================================================== */

.table-fixed {
    table-layout: fixed;
    width: 100%;
}

/* ======================================================
   REPORT CARDS
===================================================== */

.report-card {
    transition: transform .15s ease, box-shadow .15s ease;
}

.report-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,0,0,.08);
}

/* ======================================================
   FILTERS PANEL
===================================================== */

.filters-panel {
    background: white;
    border-radius: 16px;
    border: 1px solid #e2efe8;
    box-shadow: 0 6px 18px rgba(0,0,0,.05);
    padding: 16px 18px;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #196d3c;
    margin-bottom: 12px;
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr) 220px;
    gap: 14px;
    align-items: end;
}

.filter-group label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #496a5b;
}

.filter-actions {
    display: grid;
    gap: 10px;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: white;
    border-radius: 16px;
    border: 1px solid #e2efe8;
    box-shadow: 0 6px 18px rgba(0,0,0,.04);
}

.page-header h1 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    color: #196d3c;
}

.page-subtitle {
    font-size: 13px;
    color: #6c8f7d;
    margin-top: 2px;
}

.report-card-v2 {
    position: relative;
    background: white;
    border-radius: 18px;
    padding: 16px 16px 14px;
    border: 1px solid #e3f2ea;
    box-shadow: 0 6px 18px rgba(0,0,0,.04);
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.report-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0,0,0,.08);
    border-color: #cfe9dc;
}

/* Бейдж периода */
.report-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 12px;
    font-weight: 600;
    color: #198754;
    background: #ecf9f2;
    padding: 4px 10px;
    border-radius: 999px;
}

/* Контент */
.report-card-body {
    padding-top: 16px;
}

.report-title {
    font-size: 15px;
    font-weight: 700;
    color: #196d3c;
    line-height: 1.35;
    margin-bottom: 10px;
}

/* Пользователь */
.report-user {
    font-size: 13px;
    color: #5f7f72;
    display: flex;
    align-items: center;
}

.report-summary {
    background: white;
    border-radius: 16px;
    border: 1px solid #e2efe8;
    box-shadow: 0 6px 18px rgba(0,0,0,.04);
    padding: 16px 18px;
}

.report-summary-title {
    font-size: 17px;
    font-weight: 700;
    color: #196d3c;
    margin-bottom: 12px;
}

.report-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}

.summary-item {
    background: #f8fdfb;
    border-radius: 12px;
    padding: 10px 12px;
}

.summary-label {
    font-size: 12px;
    color: #6c8f7d;
}

.summary-value {
    font-weight: 600;
}

#table_songs {
    background: white;
    border-radius: 16px;
    border: 1px solid #e2efe8;
    box-shadow: 0 6px 18px rgba(0,0,0,.04);
    padding: 10px;
}