@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
    font-family: Poppins, sans-serif;
    background-color: #000;
    color: #efefef;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

#app {
    text-align: center;
    background: #000;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Username Container Styling */
#username-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px; /* Adds space between elements */
}

#username-input {
    font-family: Poppins, sans-serif;
    width: 80%;
    padding: 10px;
    padding-left: 20px;
    font-size: 16px;
    color: #efefef;
    font-weight: bold;
    background-color: #000;
    border: 3px solid #efefef;
    border-radius: 50px;
}

/* Login Button Styling */
.LoginButton {
    display: inline-block;
    text-align: center;
    padding: 10px 20px;
    font-size: 16px;
    color: #efefef;
    background-color: #00a2ff;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
}

.LoginButton:hover {
    background-color: #0056b3;
}

/* Counter Container Styling */
#counter-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* Input Field for Counter */
#value-input {
    font-family: Poppins, sans-serif;
    width: 80%;
    padding: 10px;
    font-size: 16px;
    background-color: #000;
    border: 3px solid #efefef;
    color: #efefef;
    border-radius: 50px;
    font-weight: bold;
}

/* Add and Subtract Buttons */
.addButton, .minusButton {
    margin-top: 10px;
    text-align: center;
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: #00a2ff;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
}

.addButton {
    background-color: #00c62b;
}

.minusButton {
    background-color: #d50015;
}

.addButton:hover {
    background-color: #218838; /* Green hover for Add */
}

.minusButton:hover {
    background-color: #c82333; /* Red hover for Subtract */
}

input {
    margin: 10px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 80%; /* Aligns with other elements */
}

button {
    padding: 10px 15px;
    border: none;
    background-color: #4CAF50;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}
