h1 {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

thead {
color: white;
background-color: #006aff
}

table {
width: 80%;
margin: 0 auto;     
box-shadow: 0 2px 10px rgba(0,0,0,0.15);
border-collapse: collapse;
}   

table tbody {
  text-align: left;
}

table tbody tr:nth-child(odd) {
background-color: #e7e7e7;
}

table tbody tr:nth-child(even) {
background-color: #676767;
}

th, td {
border: 1px solid white;
padding: 8px;  
}

.form-container {
max-width: 400px;
margin: 50px auto;
background: #fff;
padding: 30px;
border-radius: 12px;
box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    color: #333;
    font-weight: bold;
}

textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 14px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box; 
    font-size: 14px;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #3498db;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    margin-top: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
background-color: #2980b9;
}