/* Styles for the options panel */
.options {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-color);
}

.options label {
    font-weight: 500;
}

body.dark-mode .options { border-top-color: var(--light-color); }

.options button {
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--white-color);
    background-color: var(--primary-color);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.options button:hover { background-color: var(--secondary-color); }

/* The fake update screen itself */
.update-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0078d7; /* Windows 10 blue */
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "Segoe UI", sans-serif;
    z-index: 9999;
    cursor: none; /* Hide cursor on the fake screen */
}

/* Windows 11 style */
.update-screen.win11 {
    background-color: #0067c0;
}

.update-screen .spinner {
    width: 48px;
    height: 48px;
    border: 5px solid rgba(255, 255, 255, 0.2);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 40px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.update-screen .update-content {
    text-align: center;
}

.update-screen h2 {
    font-size: 2rem;
    font-weight: 300;
    margin: 0;
}

.update-screen p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-top: 1rem;
}

.update-screen .win11-text {
    position: absolute;
    bottom: 10%;
    text-align: center;
}