/* Overrides and Additions for the Import Screen */

/* Sidebar Section (Left Column) */
.sidebar-section {
    flex: 1;
    max-width: 35%;
    background: linear-gradient(135deg, #1c1f24 0%, #131416 100%);
    display: flex;
    justify-content: center;
    border-right: 1px solid #2a2d35;
    position: relative;
    overflow: hidden;
}

.sidebar-content {
    width: 100%;
    max-width: 400px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.step-info {
    margin-top: 60px;
}

.step-label {
    display: block;
    color: #8b92a5;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.step-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}

.sidebar-illustration {
    margin-top: auto;
    align-self: center;
}

.animated-pc {
    animation: floatPC 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.6));
}

@keyframes floatPC {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Selection Section (Right Column) */
.selection-section {
    flex: 1;
    background-color: #1a1b1d;
    display: flex;
    justify-content: center;
    padding: 60px 40px;
}

.selection-wrapper {
    width: 100%;
    max-width: 760px;
    display: flex;
    flex-direction: column;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #8b92a5;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 40px;
    transition: color 0.2s;
    align-self: flex-start;
}

.back-link:hover {
    color: #fff;
}

.selection-headline {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

/* Wallet Cards */
.wallet-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wallet-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color: #2b2e35;
    border: 1px solid transparent;
    border-radius: 16px;
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
}

.wallet-card:hover {
    background-color: #383c45;
}

.wallet-card:focus-visible {
    border-color: #30e386;
}

.wallet-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.wallet-name {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    font-family: inherit;
}
