.afw-front {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    max-width: 380px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.afw-front .afw-block {
    margin-bottom: 18px;
}

.afw-front label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.afw-front select.afw-select,
.afw-front input[type="date"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
    transition: border-color 0.2s;
}

.afw-front select:focus,
.afw-front input[type="date"]:focus {
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.afw-front .afw-inline {
    display: flex;
    gap: 12px;
}

.afw-front .afw-inline > * {
    flex: 1;
}

.afw-front .afw-checklist {
    max-height: 280px;
    overflow-y: auto;
    padding: 8px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: #f9fafb;
}

.afw-front .afw-checklist::-webkit-scrollbar {
    width: 6px;
}

.afw-front .afw-checklist::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.afw-front .afw-check {
    display: flex;
    align-items: center;
    margin: 0 0 10px 0;
}

.afw-front .afw-check input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: #3b82f6;
}

.afw-front .afw-check span {
    font-size: 14px;
    color: #374151;
}

.afw-front .afw-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 15px;
}

.afw-front .afw-submit {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.afw-front .afw-submit:hover {
    background: #2563eb;
}

.afw-front .afw-reset {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
}

.afw-front .afw-reset:hover {
    text-decoration: underline;
}

.afw-front .afw-empty {
    color: #9ca3af;
    font-style: italic;
    padding: 10px;
}