/* ===== Base Body ===== */
body {
    font-family: Arial, sans-serif;
    background-color: #1E3A5F;
    color: #fff;
    margin: 0;
    padding: 0;
    height: 100vh;
}

/* ===== Container ===== */
.container {
    display: flex;
    min-height: 100vh;
}

/* ===== Sidebar ===== */
.sidebar {
    width: 200px;
    background-color: #2C3E50;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    border-right: 3px solid white;
}

.profile img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.profile-name {
    font-weight: bold;
    margin: 0;
    color: #fff;
}

.profile-role {
    font-size: 14px;
    color: #bbb;
    margin: 0;
    margin-bottom: 20px;
}

/* ===== Sidebar Menu ===== */
.menu {
    width: 100%;
}

.menu-item {
    display: block;
    width: 100%;
    padding: 10px;
    color: #fff;
    text-decoration: none;
    margin: 5px 0;
    border-radius: 5px;
    text-align: center;
}

.menu-item.active,
.menu-item:hover {
    background-color: #0066CC;
}

/* ===== Main Content ===== */
.content {
    flex: 1;
    background-color: #1E3A5F;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

/* Header */
.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

#logout-button {
    background-color: #2A4A73;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
}

#logout-button:hover {
    background-color: #0066CC;
}

/* ===== Stats Cards ===== */
.stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.card {
    background-color: #fff;
    color: #000;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    flex: 1;
    min-width: 150px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* ===== Quick Links ===== */
.quick-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.quick-link {
    background-color: #0b5ed7;
    color: #fff;
    text-decoration: none;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    flex: 1 1 150px;
    transition: background 0.2s;
}

.quick-link:hover {
    background-color: #084dbf;
}

/* ===== Reports Preview Floating Cards ===== */
.reports-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.report-card {
    background: #fff;
    color: #000;
    padding: 15px;
    border-radius: 10px;
    flex: 1 1 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.25);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.report-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.35);
}

.report-card h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #1E3A5F;
}

.report-card p {
    font-size: 14px;
    color: #333;
}

.report-card .time {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}
