/* 

.container1 {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(74, 2, 2, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}


a{
    text-decoration: none;
}
a:visited {
    color: blue;
    text-decoration: none;
}


th,
td {
    border: 1px solid black;
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid black;
}


tr:hover {
    background-color: #98989c;
    color: black;
}

th {
    background-color: black;
    color: white;
}

input[type="text"],
input[type="email"],
input[type="tel"] {                                                                                         
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

input[type="submit"] {
    background-color: rgb(65, 23, 23);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

input[type="tel"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
}


input[type="radio"][value="Yes"] {
    -webkit-appearance: none;
    appearance: none;
    width: 10px;
    height: 10px;
    background-color: rgb(73, 73, 73);
    border-radius: 50%;
    border: none;
}


 @media screen and (max-width: 600px) {
     table {
         overflow-x: auto;
     }
 }






 */
/* Container styles */
.container1 {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(74, 2, 2, 0.1);
    overflow: hidden;
    /* Ensures shadow doesn't overflow */
}

/* Table styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    overflow-x: auto;
}

th,
td {
    border: 1px solid black;
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid black;
    font-size: 14px;
}

th {
    background-color: black;
    color: white;
}

tr:hover {
    background-color: #98989c;
    color: black;
}

/* Form input styles */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="submit"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
    /* Ensure padding and border don't affect width */
    font-size: 14px;
    margin-bottom: 10px;
}

input[type="radio"][value="Yes"] {
    -webkit-appearance: none;
    appearance: none;
    width: 10px;
    height: 10px;
    background-color: rgb(73, 73, 73);
    border-radius: 50%;
    border: none;
}

/* Anchor styles */
a {
    text-decoration: none;
    color: blue;
}

/* Make tables scroll horizontally on small screens */
@media screen and (max-width: 600px) {
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    th,
    td {
        min-width: 100px;
        font-size: 12px;
    }
}