/* Import a Google Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');



.noto-sans-400 {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}

.custom-alert-warning {
    background-color: #ffc107 !important; /* Vibrant yellow */
    border-color: #ffca2c !important; /* Slightly darker yellow border */
    color: #000000 !important; /* Black text */
    width: fit-content; /* Limit alert width */
    margin: 0 auto; /* Center the alert horizontally */
    padding: 0.5rem 1rem; /* Compact padding */
    position: fixed; /* Fix to bottom of screen */
    bottom: 0; /* Align to bottom */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Offset to truly center */
    z-index: 1000; /* Ensure alert is above other content */
}

/* Center the message text */
.custom-alert-warning .alert-message {
    text-align: center; /* Horizontally center the message */
    flex-grow: 1; /* Allow message to take available space */
}

.parent-container {
  display: flex;
  align-items: center; /* Centers items along the cross-axis (vertically in a row-direction flex container) */
  justify-content: center; /* Centers items along the main-axis (horizontally in a row-direction flex container) */
  height: 100vh; /* Example: make parent fill viewport height */
}