body {
    background-color: #cfe8ff;
}

.dashboard-wrapper {
    width: 90%;
    max-width: 900px;
    margin: 40px auto;
    font-family: Arial, sans-serif;
}

.dashboard-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.user-info-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.profile-cell {
    width: 30%;
    vertical-align: top;
}

.profile-card {
    width: 100%;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.info-cell {
    width: 70%;
    vertical-align: top;
    text-align: center;
    padding-left: 20px;
}

.user-name {
    text-align: center;
    margin: 0 0 20px 0;
    font-size: 22px;
    color: #222;
}

.user-info-inner {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    margin: 10px auto 0;
}

.user-labels,
.user-values {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
    font-size: 15px;
    color: #333;
}

.report-table-container {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.report-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.report-table th,
.report-table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    text-align: left;
    font-size: 14px;
}

.report-table th {
    background: #f2f2f2;
    font-weight: bold;
}

.report-table tr:nth-child(even) {
    background: #fafafa;
}

.report-table a {
    color: #0078ff;
    text-decoration: none;
}

.report-table a:hover {
    text-decoration: underline;
}