/* Shared mobile UI primitives used across multiple views */
.bg-dark-blue {
    background-color: #1E2235;
}

.btn-icon {
    background: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #374151;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.1s;
}

.btn-icon:active {
    transform: scale(0.95);
}

.form-input,
.form-select {
    width: 100%;
    padding: 12px 12px 12px 45px;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    background-color: #F9FAFB;
    color: #1F2937;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    outline: none;
}

.form-select {
    appearance: none;
}

.form-input:focus,
.form-select:focus {
    background-color: #fff;
    border-color: #4F46E5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
    font-size: 16px;
    pointer-events: none;
    z-index: 10;
}

@media (min-width: 1024px) {
    body.desktop-shell {
        background-color: #E5E7EB !important;
    }
}

/* Optional layout helpers for mobile-first pages */
.mobile-shell {
    background-color: #F2F3F7;
    color: #1F2937;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.mobile-shell-container {
    width: 100%;
    max-width: 400px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.input-wrapper {
    position: relative;
}

.label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

@media (min-width: 1024px) {
    .desktop-card-1100 {
        max-width: 1100px;
        min-height: auto;
        margin: 24px 0;
        border-radius: 24px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    }
}
