/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #1e1e2f;
    color: #e0e0e0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    position: relative;
}

h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    display: flex;
    align-items: center; /* Align image and text vertically */
    justify-content: center; /* Center the content horizontally */
}

h1 img {
    width: 40px; /* Adjust the size of the icon */
    height: 40px;
    margin-right: 10px; /* Add space between image and text */
}

.container {
    background-color: #2c2f3f;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    max-width: 600px;
    width: 100%;
}

p {
    font-size: 1rem;
    margin-bottom: 10px;
}

a {
    color: #78c6e0;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.popup-button {
    background-color: #4a90e2;
    color: #121212;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease;
    margin-right: 10px;
}

.popup-button:hover {
    background-color: #3b7fb1;
}

.message-container {
    margin-top: 15px;
}

.footer {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #a0a0a0;
}

/* Toast Notification Style */
.toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4a90e2;
    color: white;
    padding: 15px;
    border-radius: 5px;
    display: none;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.toast.show {
    display: block;
}
