.navbar {
    position: relative;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #000033;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    overflow: hidden; /* Prevents scrolling */
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

p {
    text-align: center;
    margin: 0px 20px 0px 20px;
    font-weight: 300;
    font-size: 16px;
    color: #ffffff;
}

.centered {
    max-width: 100%;
    height: auto;
    padding: 25px;
}


.headline, .h1, h1 {
    color: #ffffff;
    font-size:2.4rem;
    font-weight:700;
}


.preheader {
    padding: 5px 10px 5px 10px;
    background: #0153ff;
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 2px;
    border-radius: 15px;
}

#retryPaymentBtn {
    background-color: #0153ff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#retryPaymentBtn:hover {
    background-color: #0133c4;
}

#retryPaymentBtn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}
