.rounded-button {
    background-color: rgba(0,72,96,255);
    color: white;
    padding: 10px 12px;
    width: 300px;
    border: none;
    border-radius: 8px; /* Rounded corners */
    font-size: 1.2rem;
    cursor: pointer;
    margin-top: 16px;
    margin-bottom: 16px;
}

.rounded-box {
    font-size: 1.2rem; /* larger text */
    padding: 10px 12px; /* bigger clickable area */
    width: 300px;
    border-radius: 8px; /* Rounded corners */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #ccc; /* Add this line for grey border */
}

    .rounded-box:focus {
        outline: none; /* Remove default outline */
        border-color: #3b82f6; /* bright blue border */
        box-shadow: 0 0 5px 2px rgba(59, 130, 246, 0.6); /* blue glow */
    }

.flex-container {
    display: flex;
    flex-direction: column; /* stack children vertically */
    align-items: center; /* center horizontally */
    gap: 5px;
}

.divider-half {
    width: 75%;
    border: none;
    border-top: 2px solid grey;
    margin: 0 auto;
    margin-bottom: 20px;
    margin-top: 20px;

}

.divider-other {
    width: 220%;
    border: none;
    border-top: 2px solid grey;
    margin: 20px 0;
}
