/* Body Styles */
body {
    background-color: lightblue;
    background-image: url('image.jpg');
    color: blue;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

/* Title */
h1 {
    color: white;
    text-align: center;
}

/* Small Container */
#small-container {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    width: 400px;
    height: 360px;
    border-radius: 15px;
    background-color: lightblue;
}

/* Buttons */
button {
    width: 300px;
    height: 30px;
    border-radius: 5px;
    border: none;
    background-color: #4682b4;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #5a9bd8;
}

/* Select Box */
select {
    width: 300px;
    height: 30px;
    font-size: 16px;
}

/* Input Box */
textarea {
    width: 250px;
    height: 190px;
    border-radius: 15%;
    outline: none;
    padding: 15px;
    line-height: 1.5;
    font-size: 16px;
    color: #FFC0CB;
}

/* List Container */
#list-container {
    width: 400px;
    height: 400px;
    border-radius: 15px;
    background-color: pink;
    overflow-y: auto;
    font-size: 20px;
    color: white;
    padding-left: 20px;
}

/* Main Container */
#main-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 400px;
    width: 800px;
    gap: 10px;
}
