.debt-button {
    width: 50%;
}

.debt-title {
    margin-top: 5px;
    text-align: center !important;
    color: #0b0b64;
    font-size: large;
    font-weight: bold;
}

.text-blue {
    color: #0b0b64;
}

.selected-debt {
    outline: 0.4em solid #b08921; /* Proportional outline */
    outline-offset: -0.3em; /* Keeps outline close to the button */
}

.debt-button.selected {
    outline: 0.4em solid #b08921; /* Proportional outline */
    outline-offset: -0.3em; /* Keeps outline close to the button */
}


.button-round {
    border-radius: 10px;
}

.debt-container {
    display: flex;
    max-width: 100%;
}

.w80 {
    width: 70%;
    margin: 15% 0;
}

.btn-disabled {
    background-color: #9da0eb !important; /* Light gray */
    color: #fff !important; /* Dimmed text */
    font-weight: bold;
    border-color: #9da0eb !important;
    cursor: not-allowed !important;
    pointer-events: none;
}

.footer {
    margin-top: 50px;
    width: 100%;
    background-color: #575de3;
    padding: 20px 0;
    text-align: center !important;
    color: #fff;
    font-weight: 600;
}

.footer a {
    color: #222;
}

.error-display {
    display: none; 
    position: fixed; 
    top: 10px; 
    left: 50%; 
    transform: translateX(-50%);
    background: #d9534f; 
    color: white; 
    padding: 10px 20px; 
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    opacity: 0;
    transition: opacity 1s;
    z-index: 1000;
}