@import url('https://fonts.googleapis.com/css2?family=Boldonse&family=Pathway+Extreme:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Pathway Extreme", sans-serif;
    background-color: #121212; /* Dark background */
    color: #e0e0e0; /* Light text */
    height: 100vh;
    text-align: center;
}

header {
    width: 100%;
    background-color: #1e1e1e; /* Dark header background */
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
}

#logo img {
    width: 220px; /* Adjust logo size */
}

.main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

/* Main Container */
#container {
    background-color: #2c2c2c; /* Dark container background */
    border-radius: 8px;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
}

/* Heading style */
h1 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
}

/* Form elements */
form {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 16px;
    margin-bottom: 5px;
    color: #ddd;
}

input[type="text"] {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #555;
    border-radius: 4px;
    margin-bottom: 20px;
    outline: none;
    background-color: #333; /* Dark input field */
    color: #fff; /* White text in input */
}

input[type="text"]:focus {
    border-color: #007BFF;
}

input[type="submit"] {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    background-color: #007BFF;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

input[type="submit"]:active {
    background-color: #00408d;
}

/* Responsive layout for mobile devices */
@media screen and (max-width: 480px) {
    #container {
        width: 90%;
        padding: 15px;
    }

    h1 {
        font-size: 20px;
    }
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5); /* Transparent background */
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Make sure it's above other content */
}

.popup-content {
    background-color: #2c2c2c; /* Dark background */
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    width: 400px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
}

.popup-content p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
}

#copy-btn, #close-popup {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

#copy-btn {
    background-color: #007BFF;
    color: white;
}

#copy-btn:hover {
    background-color: #0056b3;
}

#copy-btn:active {
    background-color: #00408d;
}

#close-popup {
    background-color: #ff5722;
    color: white;
}

#close-popup:hover {
    background-color: #e64a19;
}

#close-popup:active {
    background-color: #d32f2f;
}