/* Basic reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.styled-table {
    width: 90%;
    max-width: 600px;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 1rem;
    text-align: left;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

/* Caption Styling */
.styled-table caption {
    caption-side: top;
    font-size: 1.25rem;
    font-weight: bold;
    margin: 15px 0;
    color: #333;
}

/* Header Styling */
.styled-table thead tr {
    background-color: #4CAF50;
    color: #fff;
    font-weight: bold;
}

.styled-table th,
.styled-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
}

/* Bold First Column */
.styled-table td:first-child {
    font-weight: bold;
}

/* Footer Styling */
.styled-table tfoot {
    background-color: #f1f1f1;
    font-weight: bold;
    color: #333;
}
