/* base */
body {
    background-color: #f5f5f5;
    -webkit-font-smoothing: antialiased;
}

/* ajustar espaçamento do conteúdo principal */
.container-main {
    padding: 1rem;
}

/* tabela responsiva já pela classe Bootstrap .table-responsive
   mas garantir quebra limpa em mobile */
.table-responsive {
    overflow-x: auto;
}

/* drop zone: maior e touch-friendly em dispositivos móveis */
.drop-zone {
    background-color: #f8f9fa;
    cursor: pointer;
    border: 2px dashed #ced4da;
    border-radius: 8px;
    padding: 18px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color .15s, border-color .15s;
    user-select: none;
    -webkit-user-select: none;
}

.drop-zone p {
    margin: 0;
    font-size: .95rem;
}

.drop-zone-hover {
    background-color: #e9ecef;
    border-color: #0d6efd;
}

/* aumentar botões e hit area no mobile */
.btn {
    min-height: 40px;
    padding-top: .4rem;
    padding-bottom: .4rem;
}

/* pequenas adaptações para telas muito pequenas */
@media (max-width: 576px) {
    .drop-zone { min-height: 140px; padding: 20px; }
    .navbar-brand { font-size: 1rem; }
    .navbar-text { display: none; } /* esconde nome do usuário quando estreito; mostre via menu se preferir */
}

/* espaçamento para o conteúdo principal sem colidir com barra fixa (se usar) */
.main-content {
    padding-top: 1rem;
    padding-bottom: 2rem;
}

/* Remove aparência de link dos itens do dropdown */
.dropdown-menu .dropdown-item {
    color: #000;
    text-decoration: none;
    font-weight: 400;
}

/* Hover com aparência de menu */
.dropdown-menu .dropdown-item:hover {
    background-color: #f2f2f2;
    color: #000;
    text-decoration: none;
}

/* Remove foco azul ao clicar */
.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item:active {
    color: #000;
    background-color: #e9ecef;
    text-decoration: none;
    box-shadow: none;
}
.dropdown-menu {
    font-size: 0.95rem;
}
img {
    transition: opacity .15s;
}

img:hover {
    opacity: .8;
}

.timeline {
    list-style: none;
    padding-left: 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    width: 2px;
    height: 100%;
    background: #ccc;
}

.timeline-item {
    position: relative;
    padding-left: 25px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 14px;
    height: 14px;
    background: #fff;
    border: 2px solid #0d6efd;
    border-radius: 50%;
}
