/* Resetăm tot ca să nu avem margini aiurea */
* { box-sizing: border-box; margin: 0; padding: 0; }

body, html {
    background: #000;
    height: 100%;
    overflow: hidden; /* Împiedică pagina să se miște sub aplicație */
}

.oracol-container {
    display: flex;
    flex-direction: column;
    height: 100vh; /* Ocupă tot ecranul telefonului */
    background-image: url('../images/fundal-oracol.jpg');
    background-size: cover;
    background-position: center;
}

/* MENIU SUS */
.oracol-menu-top {
    display: flex;
    overflow-x: auto; /* Permite swipe stânga-dreapta pe butoane */
    padding: 10px;
    background: rgba(0,0,0,0.8);
    gap: 10px;
}

.mode-btn {
    white-space: nowrap;
    padding: 8px 15px;
    background: #222;
    color: #d4af37;
    border: 1px solid #d4af37;
    border-radius: 5px;
}

/* ZONA DE CHAT */
.oracol-chat-box {
    flex: 1; /* Ocupă tot spațiul dintre meniu și tastatură */
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ai-msg {
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #d4af37;
    max-width: 90%;
}

/* BARA DE JOS */
.oracol-input-bar {
    display: flex;
    padding: 15px;
    background: #000;
    gap: 10px;
}

#user-input {
    flex: 1;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #444;
    background: #111;
    color: white;
}

.icon-btn {
    width: 45px;
    background: #d4af37;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
}