body {
    display: flex;    
    flex-direction: column;
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f6;
    margin: 0;
    padding: 0;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

.container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 60%;
    max-width: 500px;
}

input[type="text"] {
    width: 80%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-right: 10px;
}

button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #0056b3;
}

/* Styling for the scrollable box */
.transfers-box {
    width: 100%;
    max-width: 500px;  /* You can adjust this width */
    height: 400px;     /* Adjust this height as necessary */
    overflow-y: auto;  /* Adds a vertical scrollbar */
    border: 1px solid #d0d0d0;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin-top: 10px;
}

/* Styling for each transfer item in the list */
#transfersList li {
    padding: 10px;
    border-bottom: 1px solid #e0e0e0;
}

#transfersList li:last-child {
    border-bottom: none;
}
