/* Container */
.mand-container {
    width: 95%;
    max-width: 1100px;
    margin: 30px auto;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
}

/* Title */
.mand-title {
    text-align: center;
    font-size: 26px;
    margin-bottom: 25px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Table */
.mand-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    background: #fff;
}

/* Header */
.mand-table th {
    background-color: #f2f2f2;
    border: 1px solid #dcdcdc;
    padding: 12px;
    text-align: left;
    font-size: 14px;
}

/* Cells */
.mand-table td {
    border: 1px solid #e0e0e0;
    padding: 12px;
    font-size: 14px;
}

/* Alternate rows */
.mand-table tr:nth-child(even) {
    background-color: #fafafa;
}

/* Hover effect */
.mand-table tr:hover {
    background-color: #f5f9ff;
}

/* Links */
.mand-table a {
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
}

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

/* Column widths */
.mand-table th:first-child,
.mand-table td:first-child {
    width: 80px;
    text-align: center;
}

.mand-table th:last-child,
.mand-table td:last-child {
    width: 160px;
    text-align: center;
}

/* Mobile */
@media screen and (max-width: 768px) {
    .mand-container {
        width: 98%;
    }

    .mand-table th,
    .mand-table td {
        padding: 8px;
        font-size: 12px;
    }

    .mand-title {
        font-size: 20px;
    }
}
