/* ===== RESET ===== */
body{
    margin:0;
    font-family: Arial, Helvetica, sans-serif;
    background:#f4f7fb;
}

/* ===== TOPO ===== */
.topo{
    width:100%;
    height:70px;
    background: linear-gradient(to right, #ffffff, #4a8df6, #0b5ed7);
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 20px;
    box-shadow:0 2px 5px rgba(0,0,0,0.2);
    box-sizing:border-box;
}

.logo-area{
    display:flex;
    align-items:center;
}

.logo-img{
    height:40px;
    margin-right:10px;
}

.logo-texto{
    font-size:22px;
    font-weight:700;
    color:#0b5ed7;
    letter-spacing:1px;
}

.logo-texto span{
    font-size:12px;
    color:#6c757d;
    margin-left:6px;
}

/* ===== MENU ===== */
.menu{
    position:relative;
}

.menu button{
    background:#0b5ed7;
    color:#fff;
    border:none;
    padding:10px 15px;
    cursor:pointer;
    border-radius:5px;
}

.menu button:hover{
    background:#084298;
}

.dropdown{
    display:none;
    position:absolute;
    right:0;
    top:40px;
    background:#fff;
    min-width:180px;
    box-shadow:0px 2px 8px rgba(0,0,0,0.3);
    border-radius:5px;
    overflow:hidden;
    z-index:999;
}

.dropdown a{
    display:block;
    padding:12px;
    text-decoration:none;
    color:#333;
    border-bottom:1px solid #eee;
}

.dropdown a:hover{
    background:#f1f5ff;
}

/* ===== ÁREA DE CONTEÚDO ===== */
.area{
    padding:25px;
}

/* ===== LOGIN ===== */
.login-box{
    width:350px;
    margin:120px auto;
    background:#fff;
    padding:30px;
    border-radius:10px;
    box-shadow:0 0 15px rgba(0,0,0,0.2);
}

.login-box h2{
    text-align:center;
    margin-bottom:20px;
    color:#0b5ed7;
}

/* ===== FORMULÁRIOS ===== */
.form-box{
    background:white;
    padding:25px;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
    width:520px;
}

input, select, textarea{
    padding:10px;
    border:1px solid #ccc;
    border-radius:6px;
    width:300px;
    margin-top:5px;
    margin-bottom:10px;
    font-size:14px;
}

textarea{
    width:420px;
    height:120px;
}

h2{
    color:#0b5ed7;
    margin-top:0;
}

/* ===== BOTÕES ===== */
button{
    background:#0b5ed7;
    color:white;
    border:none;
    padding:10px 18px;
    border-radius:6px;
    cursor:pointer;
    font-size:14px;
}

button:hover{
    background:#084298;
}

.btn-cinza{
    background:#6c757d;
}

.btn-verde{
    background:#198754;
}

.btn-vermelho{
    background:#dc3545;
}

/* ===== TABELAS ===== */
table{
    width:100%;
    border-collapse:collapse;
    background:white;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

th{
    background:#0b5ed7;
    color:white;
    padding:12px;
    text-align:left;
}

td{
    padding:10px;
    border-bottom:1px solid #eee;
}

tr:hover{
    background:#f8faff;
}

/* ===== CARDS (dashboard futuro) ===== */
.card{
    background:white;
    padding:20px;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
    width:200px;
    display:inline-block;
    margin-right:20px;
}

.card h3{
    margin:0;
    color:#0b5ed7;
}

.card p{
    font-size:22px;
    font-weight:bold;
    margin:5px 0 0 0;
}

/* ===== LINKS ===== */
a{
    color:#0b5ed7;
    text-decoration:none;
}

a:hover{
    text-decoration:underline;
}

#resultado_profissional{
    background:white;
    border:1px solid #ccc;
    width:300px;
    max-height:150px;
    overflow-y:auto;
    border-radius:5px;
    margin-top:5px;
}

#resultado_profissional div:hover{
    background:#f1f5ff;
}

#resultado_profissional{
    background:white;
    border:1px solid #ccc;
    width:350px;
    max-height:200px;
    overflow-y:auto;
    border-radius:5px;
    margin-top:5px;
}

.item-busca{
    padding:10px;
    border-bottom:1px solid #eee;
    cursor:pointer;
}

.item-busca:hover{
    background:#f1f5ff;
}
select{
    padding:10px;
    border:1px solid #ccc;
    border-radius:6px;
    width:420px;
    margin-top:5px;
    margin-bottom:10px;
    font-size:14px;
    background:white;
}