html,
body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #fff;
    background-color: #191969;
    overflow: hidden;
}

.root {
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    padding: 3rem;
    display: flex;
    justify-content: center;
}

.browser-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.browser-modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    font-family: 'Arial', sans-serif;
}

.browser-modal-content h2 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 15px;
}

.browser-modal-content p {
    color: #555;
    margin-bottom: 20px;
}

.browser-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 15px 10px;
    padding: 12px 18px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    font-weight: bold;
    width: 150px;
}

.browser-button img {
    width: 24px;
    height: auto;
    margin-right: 8px;
}

.browser-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}
