/* Base styles and fonts */
/* This ensures the body takes the full height of the viewport */
body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;  /* centers children vertically */
    align-items: center;      /* centers children horizontally */
    height: 100vh;            /* viewport height */
    margin: 0;                /* resets margin */
}



h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

/* Curved-sided panel */
.panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 25px;
    box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.1);
    text-align: center; /* Ensures text elements inside are centered */
}

/* Version display */
#version {
    position: fixed;
    bottom: 5px;
    right: 5px;
    font-size: 27px;
    color: #888;
}

/* Notification styles */
#notification {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.notification-content {
    background: #fff;
    padding: 20px;
    width: 70%;
    max-width: 500px;
    border-radius: 10px;
}

.notification-title {
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 10px;
}

.notification-message {
    margin-bottom: 20px;
}

.dismiss-btn {
    background-color: red;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Button styles */
button#goToLink {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button#goToLink:hover {
    background-color: #45a049;
}

/* If you have a loader, you can add styles for that here. */
.loader {
    /* Add loader styles here if needed */
}
