.gs-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.get-started-popup {
    background: #fff;
    width: 80%;
    max-width: 500px; /* Set a maximum width if needed */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
}

h2 {
    margin-top: 0;
}

.custom-input {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border: 2px solid #3498db;
    border-radius: 5px;
    box-sizing: border-box;
}

.gs-btn {
    background-color: #3498db;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.cse-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    color: #e74c3c;
    cursor: pointer;
}