.container {
    width: 100%;
    background-color: rgb(150, 150, 213);
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.maincontainer {
    width: 60%;
    background-color: white;
    height: 50%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.itemcontainer {
  width: 100%;
  display: flex;
  flex-direction: column; /* vertical layout */

.selectkodiv {
  display: flex;
  flex-direction: column;
  gap: 20px; /* this creates the gap between select and button */
}



select {
    width: 100%;
    height: 40px;
    border-radius: 10px;
    text-align: center;
    font-size: 16px;
    border: 1px solid #ccc;
    outline: none;
}

.buttonkodiv {
    width: 100%;
    background-color: transparent; 
}

button {
    width: 100%;
    height: 40px;
    text-align: center;
    background-color: green;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
}
button:hover{
    background-color: rgb(34, 189, 42);
}

#quote {
    margin-top: 20px;
    text-align: center;
    font-style: italic;
    font-size: 18px;
    color: #333;
    min-height: 60px;
}
