/*login form part*/
body {
    font-family: 'Arial', sans-serif;
    background-image: url("background.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.wrapper {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

form {
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 400px; /* Set your desired maximum width */
    width: 100%;
    box-sizing: border-box;
    font-size: small;
    border: 3px solid Tomato;
    color: #ffffff;
}


h3 {
    color:#ffffff;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

h1{
    color: #ffffff;
    align-items: center;
    justify-content: center;
}

.input-box {
    margin-bottom: 15px;
    position: relative;

}

.input-box input {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 5px;
}

.input-box input:focus {
    outline: none;
    border-color: #3498db;
}

.input-box input[type="submit"] {
    background-color: #3498db;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

.input-box input[type="submit"]:hover {
    background-color: #babb6d;
}

/* QR Code Generator*/

button {
    background-color: #3498db;
    color: #fff;
    cursor: pointer;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    margin-top: 10px;
    display: bottom;
    justify-content: space-around;
}

button:hover {
    background-color: #217dbb;
}

.file-upload {
    background-color: #3498db;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 20px;
}

.file-upload:hover {
    background-color: #217dbb;
}

video {
    width: 35% ;
    max-width: 35%;
    margin-left: 35%;
    margin-top: 20px;
}

/* General styling for labels and selects */
label {
    display: block;
    margin-bottom: 8px;
  }
  
  select {
    width: 100%;
    padding: 8px;
    margin-bottom: 16px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
  }
  
  /* Style for labels and selects specific to your form */
  #Model,
  #Variant {
    background: #FFFFFF;
    /* Add specific styles for the selects if needed */
  }
  
  /* Add more styles as needed */
  textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

#dataInput {
    width: 100%;
    height: 150px;
    padding: 30px;
    box-sizing: border-box;
    border: 1px solid #000000;
    border-radius: 5px;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
    resize: vertical; /* Allow vertical resizing */
}

/* Optional: Style for placeholder text */
#dataInput::placeholder {
    color: #999;
}

.table-container {
    margin-top: 100px; /* Adjust the margin-top value as needed */
    background-color: #ffda0abb;
    padding: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-height: 300px; /* Set your desired maximum height */
    overflow-y: auto; /* Enable vertical scrolling */
}

table {
    width: 80%;
    border-collapse: collapse;
    margin-top: 20px; /* You can adjust this margin-top value separately for the table if needed */
    /* max-height: 100px; Remove this line to allow the table to grow vertically */
    overflow-y: auto;
}

th, td {
    border: 1px solid #dddddd15;
    padding: 5px;
    text-align: center;
}

th {
    background-color: #fff34b;
    position: sticky;
    top: 0;
}

tr {
    background-color: #f5f5f5;
    font-size: small;
}

tr:hover {
    background-color: #f5f5f5;
}


form input {
    width: 100%;
    padding: 5px;
    margin-bottom: 8px;
    box-sizing: border-box;
    font-size: 12px;
}

form input[type="submit"] {
    background-color: #4caf50;
    color: #e6e20b;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    border: none;
    padding: 12px;
    border-radius: 4px;
}

form input[type="submit"]:hover {
    background-color: #45a049;
}