/* Make footer stick to the bottom */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    flex: 1;
    padding-bottom: 100px; /* Space for the fixed footer */
}

/* Custom styles for login page */
.login-container {
    padding-top: 10vh;
}

/* Style for the transaction history response */
pre code.api-response {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 10px;
    display: block;
    white-space: pre-wrap; /* Wrap long lines */
    word-break: break-all;
    max-height: 150px;
    overflow-y: auto;
}