body {
    margin: 0;
    padding: 0;
    background-color: rgb(10, 10, 10);
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.form-div {
    background-color: rgb(32, 32, 32);
    padding: 20px;
    border-radius: 10px;
    width: 80%; /* Adjust the width as needed */
    max-width: 400px; /* Add a max-width for responsiveness */
    margin: 0 auto 20px; /* Center horizontally and add 20px bottom margin */
    margin-bottom: 20px;
    margin-top: 20px;
}
.devicelist-dev {
    background-color: rgb(32, 32, 32);
    padding: 20px;
    border-radius: 10px;
    width: 80%; /* Adjust the width as needed */
    max-width: 800px; /* Add a max-width for responsiveness */
    margin: 0 auto 20px; /* Center horizontally and add 20px bottom margin */
}

.form-data {
    display: block;
    margin-bottom: 10px;
}

/* Style the select element */
.form-data select {
    appearance: none;
    background-color: rgb(29, 59, 42);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
    cursor: pointer;
    color: white;
}

.form-data select option {
    margin-top: 100px;
    border-top: 10px solid #ccc;
    padding-top: 50px;
}

/* Add custom arrow for the select element */
.form-data select::after {
    content: "\f107"; /* FontAwesome arrow icon */
    font-family: "Font Awesome 5 Free"; /* Replace with your FontAwesome font-family */
    font-weight: 900;
    padding-left: 10px;
}

.build {
    display: block;
    margin-bottom: 15px;
    background-color: darkgray;
    padding: 10px;
    border-radius: 10px;
    color: white;
    text-decoration: none;
}

.build:hover {
    background-color: #444;
}