/* General Styles */
.wrap {
    padding: 20px;
    font-family: Arial, sans-serif;
}

/* Headings */
h1 {
    color: #0073aa;
    font-size: 24px;
    margin-bottom: 20px;
}

/* Table Styles */
.table-wrapper {
    margin-top: 20px;
}

.table-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.table-wrapper th,
.table-wrapper td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.table-wrapper th {
    background-color: #f1f1f1;
}

/* Alternating Row Colors */
.table-wrapper tr:nth-child(even) {
    background-color: #f9f9f9;
}

.table-wrapper tr:hover {
    background-color: #f1f1f1;
}

/* Button Styles */
.button-primary {
    background: #0073aa;
    border-color: #0073aa;
    color: #fff;
    box-shadow: 0 1px 0 rgba(0,0,0,0.2);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 3px;
}

.button-primary:hover {
    background: #006799;
    border-color: #006799;
}

@media (max-width: 768px) {
    .wrap {
        padding: 10px;
    }

    h1 {
        font-size: 20px;
    }

    .button-primary {
        padding: 8px 16px;
    }
}