
body {

    font-family: Arial, sans-serif;

    background: #f4f6f8;

    padding: 20px;

}

.card {

    background: white;

    padding: 20px;

    border-radius: 10px;

    box-shadow: 0 2px 8px rgba(0,0,0,0.08);

    margin-bottom: 20px;

}

h1 {

    margin-bottom: 20px;

}

.campo {

    display: flex;

    flex-direction: column;

    margin-bottom: 15px;

}

label {

    margin-bottom: 5px;

    font-size: 13px;

    font-weight: bold;

}

input {

    padding: 10px;

    border: 1px solid #ccc;

    border-radius: 6px;

    font-size: 14px;

}

button {

    background: #1976d2;

    color: white;

    border: none;

    padding: 12px 20px;

    border-radius: 6px;

    cursor: pointer;

    font-weight: bold;

}

button:hover {

    background: #125aa0;

}

.busca-container {

    position: relative;

}

#listaAtiradores {

    position: absolute;

    top: 100%;

    left: 0;

    right: 0;

    background: white;

    border: 1px solid #ccc;

    border-top: none;

    border-radius: 0 0 6px 6px;

    max-height: 220px;

    overflow-y: auto;

    z-index: 9999;

    box-shadow: 0 4px 10px rgba(0,0,0,0.08);

}

.item-atirador {

    padding: 10px;

    cursor: pointer;

    border-bottom: 1px solid #eee;

}

.item-atirador:hover {

    background: #f5f5f5;

}

.alerta {

    background: #ffeaea;

    color: #c62828;

    padding: 15px;

    border-radius: 6px;

    margin-top: 15px;

    display: none;

    font-weight: bold;

}

table {

    width: 100%;

    border-collapse: collapse;

    background: white;

}

th,
td {

    border: 1px solid #ddd;

    padding: 8px;

    font-size: 13px;

}

th {

    background: #333;

    color: white;

}

