
.container {
    width: 80%;
    max-width: 800px;
    margin: 20px auto;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    margin-bottom: 20px;
    text-align: center;
}

.column {
    width: 30%;
    max-width: 300px;
    float: left;
    padding: 10px;
}

/* Clearfix to prevent columns from overlapping */
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

img {
  width: 60%;
  max-height: 60%;
  height: auto;
  max-width: 200px;
}

h1 {
    margin-top: 10px; /* Adjust the margin as needed */
}
    
body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

form {
    max-width: 100%;
    margin: 20px auto;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

label {
    display: block;
    margin-bottom: 8px;
}

input {
    width: 60%;
    max-width: 600px;
    padding: 8px;
    margin-bottom: 12px;
    border: 1px solid #d1d1d1;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    background-color: #4caf50;
    color: #ffffff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

table {
    width: 90%;
    border-collapse: collapse;
    max-width: 800px;
    margin: 20px;
    background-color: #D1F3C5;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    form {
    width: 80%;
    max-width: 600px;
    }
}

@media (min-width: 992px) {
    form {
    width: 80%;
    max-width: 800px;
    }
    
}

select {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 60%;
    box-sizing: border-box;
    appearance: none; /* Remove default arrow in some browsers */
    background-color: #fff;
    color: #333;
}
    
/* Style for the dropdown arrow */
select:after {
    content: '\25BC'; /* Unicode character for down arrow */
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #555;
}

/* Style for the selected option */
select option:checked {
    background-color: #e0e0e0;
}

/* Style for the hover effect */
select:hover {
    border-color: #999;
}

/* Style for the focus effect */
select:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

th, td {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

th {
  background-color: #f2f2f2;
}


