/* === SPLASH SCREEN STYLES === */

.w-splash-card {
    text-align: center;
    padding: var(--spacing-xlarge, 3rem);
    margin-top: 20vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #dee2e6;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.w-splash-content {
    margin-bottom: var(--spacing-large, 2rem);
}

.w-splash-title {
    font-size: 3rem;
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.w-splash-subtitle {
    font-size: 1.5rem;
    margin: 0;
    color: #6c757d;
    font-weight: 300;
}

.w-splash-footer {
    font-size: 0.8rem;
    color: #adb5bd;
    margin-top: var(--spacing-large, 2rem);
}

/* === WELCOME SCREEN STYLES === */

.w-welcome-card {
    text-align: center;
    padding: var(--spacing-xlarge, 3rem);
    margin-top: 10vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #dee2e6;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.w-welcome-header {
    margin-bottom: var(--spacing-large, 2rem);
}

.w-welcome-title {
    font-size: 3rem;
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
    font-weight: bold;
}

.w-welcome-subtitle {
    font-size: 1.2rem;
    margin: 0 0 2rem 0;
    color: #6c757d;
    font-weight: 300;
}

.w-welcome-features {
    text-align: left;
    margin-bottom: var(--spacing-large, 2rem);
    padding: 0 1rem;
}

.w-welcome-features-title {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.w-welcome-features-list {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #495057;
    list-style: none;
    padding: 0;
}

.w-welcome-feature-item {
    margin-bottom: 0.5rem;
}

.w-welcome-section {
    margin-bottom: var(--spacing-large, 2rem);
}

.w-welcome-section-title {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.w-welcome-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.w-welcome-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.75rem 1rem;
    border: 2px solid #dee2e6;
    border-radius: var(--border-radius);
    background: white;
    width: 300px;
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

.w-welcome-option:hover {
    border-color: #007bff;
    background: #f8f9ff;
}

.w-welcome-option-selected {
    border-color: #007bff;
    background: #f8f9ff;
}

.w-welcome-radio {
    margin-right: 0.75rem;
}

.w-welcome-storage-options {
    /* Unclear why this is needed */
    max-width: 100%;
}

.w-welcome-storage-option {
    width: 350px;
    align-items: flex-start;
    font-size: 1rem;
}

.w-welcome-storage-option .w-welcome-radio {
    margin-top: 0.2rem;
}

.w-welcome-storage-content {
    flex: 1;
}

.w-welcome-storage-title {
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.w-welcome-storage-description {
    font-size: 0.9rem;
    color: #6c757d;
}

.w-welcome-button {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    background: #007bff;
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    min-width: 200px;
    transition: background-color 0.2s ease;
}

.w-welcome-button:hover {
    background: #0056b3;
}

.w-button-disabled {
    background: #6c757d !important;
    cursor: not-allowed !important;
}

.w-button-disabled:hover {
    background: #6c757d !important;
}
