/* GeoSmart Location Modal - Welcome View Styles */

#gs-view-welcome {
    text-align: center;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.gs-welcome-illustration {
    display: flex;
    justify-content: center;
}

.gs-welcome-illustration img {
    max-width: 250px;
    height: auto;
    margin-bottom: 1.5rem;
}

.gs-welcome-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.gs-welcome-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.gs-welcome-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.gs-btn-orange {
    background-color: var(--gs-primary-color) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 12px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    font-size: 1rem !important;
    transition: background 0.2s !important;
    width: 100% !important;
    min-height: auto !important;
    text-transform: none !important;
}
.gs-btn-orange:hover { background-color: var(--gs-primary-color-hover) !important; }
.gs-btn-orange:disabled { opacity: 0.7 !important; cursor: not-allowed !important; }

.gs-btn-outline {
    background-color: transparent !important;
    color: var(--gs-primary-color) !important;
    border: 1px solid var(--gs-primary-color) !important;
    border-radius: 6px !important;
    padding: 12px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    font-size: 1rem !important;
    transition: background 0.2s, color 0.2s !important;
    width: 100% !important;
    min-height: auto !important;
    text-transform: none !important;
}
.gs-btn-outline:hover {
    background-color: #fff7ed;
}
