/* Akiba Diccionario v3.1 - estilo claro, botones rojos, borrar historial */
.akiba-box {
    max-width: 720px;
    margin: 30px auto;
    background: linear-gradient(180deg, #fff 0%, #fff 60%);
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 6px 30px rgba(37, 1, 59, 0.06);
    font-family: 'Poppins', Arial, sans-serif;
    color: #2b2350;
}
.akiba-header h2 {
    margin: 0 0 6px;
    font-size: 28px;
    letter-spacing: -0.5px;
    color: #4b2d72;
}
.akiba-sub {
    margin: 0 0 12px;
    color: #6b517f;
    font-size: 13px;
}
.akiba-controls {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}
.akiba-controls input[type="text"] {
    flex: 1;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(75,45,114,0.08);
    font-size: 16px;
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}
.akiba-btn {
    background: #e33b3b;
    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    min-width: 120px;
    box-shadow: 0 8px 18px rgba(227,59,59,0.18);
    transition: transform 120ms ease, box-shadow 120ms ease;
}
.akiba-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(227,59,59,0.22); }

.akiba-result {
    margin: 12px 0 18px;
    padding: 18px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(75,45,114,0.04);
    min-height: 54px;
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #3a2b50;
}

/* mensaje de error */
.akiba-error {
    background: #fff0f2;
    border: 1px solid #ffd6dd;
    color: #8a1b1b;
    padding: 10px 12px;
    border-radius: 10px;
}

/* Historial */
.akiba-historial h3 {
    margin: 6px 0 12px;
    font-size: 16px;
    color: #4b2d72;
    display:flex;
    align-items:center;
    gap:8px;
}
.akiba-clear {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 16px;
    padding:6px;
    border-radius:8px;
    transition: background 120ms ease;
}
.akiba-clear:hover { background: rgba(227,59,59,0.06); }

#akiba-historial-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
#akiba-historial-list li {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px;
    background: linear-gradient(180deg, #fbf7ff 0%, #fff 100%);
    border-radius: 10px;
    margin-bottom: 10px;
    border: 1px solid rgba(75,45,114,0.03);
}
.akiba-flag {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(74,32,114,0.06);
}
.akiba-item-text {
    font-size: 15px;
    color: #3a2b50;
    font-weight: 600;
}
/* Responsive */
@media (max-width:600px){
    .akiba-controls { flex-direction: column; align-items: stretch; }
    .akiba-btn { width: 100%; min-width: auto; }
}
