input,
textarea {
    padding: 10px;
    border-radius: 10px;
}

/* Reset basic styles */
body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

/* Container for the form */
form {
    display: flex;
    flex-direction: column;
    width: 400px;
    margin: 0 auto;
    padding: 20px;
    background-color: #222;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Labels and inputs */
label {
    color: #ddd;
    font-weight: bold;
    margin-bottom: 5px;
}

input,
textarea,
select {
    background-color: #333;
    border: none;
    border-radius: 3px;
    color: #eee;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 16px;
}

input[type="submit"] {
    background-color: #e00;
    color: #fff;
    cursor: pointer;
}

/* Select options */
select {
    appearance: none;
    /* Hide default dropdown arrows */
}

/* Dropdown arrow icon */
select::after {
    content: "\25BC";
    color: #ddd;
    display: inline-block;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Focus styles */
input:focus,
textarea:focus,
select:focus {
    outline: none;
    border: 1px solid #e00;
}

/* Home and List icons */
a img {
    width: 30px;
    margin-right: 10px;
}

/* Remove default link styles */
a {
    text-decoration: none;
    color: #ddd;
}

#comp {
    color: #222;
    font-weight: bold;
    text-decoration: underline;
    margin-top: 0;
    padding-top: 0;
    border: 1px solid #222;
}