/**
 * Assistent-spezifische Styles
 */

/* Step Navigation */
.step { display: none; }
.step.active { display: block; }

/* File Upload Area */
.upload-area {
    border: 2px dashed #586e75;
    border-radius: 0.5rem;
    padding: 3rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}
.upload-area:hover {
    border-color: #268bd2;
    background: rgba(38, 139, 210, 0.1);
}

/* Country Selection */
.country-item {
    padding: 0.5rem 0.75rem;
    border-radius: 0.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.country-item:hover { background: #094959; }
.country-item.selected { background: rgba(38, 139, 210, 0.2); }

/* Nizza Classification */
.nizza-item {
    padding: 0.5rem 0.75rem;
    border-radius: 0.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
}
.nizza-item:hover { background: #094959; }
.nizza-item.selected { background: rgba(38, 139, 210, 0.2); }
.nizza-klasse {
    font-weight: 600;
    color: #268bd2;
    min-width: 35px;
}

/* Klassen Browse */
.klasse-browse-item .klasse-items {
    max-height: 200px;
    overflow-y: auto;
}

/* Option Selection (Radio-Style Cards) */
.aufschiebung-option,
.frist-option {
    transition: all 0.15s ease;
}
.aufschiebung-option:hover,
.frist-option:hover {
    background: #094959 !important;
}
.aufschiebung-option.selected,
.frist-option.selected {
    background: rgba(38, 139, 210, 0.2) !important;
    border: 1px solid #268bd2;
}

/* Locarno Items */
.locarno-item {
    padding: 0.5rem 0.75rem;
    border-radius: 0.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.locarno-item:hover { background: #094959; }
.locarno-item.selected { background: rgba(38, 139, 210, 0.2); }
.locarno-klasse {
    font-weight: 600;
    color: #268bd2;
    min-width: 50px;
    display: inline-block;
}
