.card-admin {
    background: white;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    margin-top: 28px;
}

.card-admin h2 {
    color: #092444;
    margin-bottom: 22px;
    font-size: 22px;
}

.form-admin {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-admin .campo-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-admin label {
    font-weight: 700;
    color: #092444;
}

.form-admin input[type="text"],
.form-admin input[type="email"],
.form-admin input[type="password"] {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-size: 15px;
    background: white;
}

.form-admin input:focus {
    outline: none;
    border-color: #004a80;
    box-shadow: 0 0 0 3px rgba(0,74,128,0.12);
}

.form-admin .opcoes-form {
    display: flex;
    gap: 24px;
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
}

.form-admin .opcoes-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.tabela-responsiva {
    width: 100%;
    overflow-x: auto;
    margin-top: 20px;
}

.tabela-admin {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.tabela-admin th {
    background: #092444;
    color: white;
    padding: 12px;
    text-align: left;
    font-size: 14px;
    white-space: nowrap;
}

.tabela-admin td {
    padding: 10px;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: middle;
}

.tabela-admin input[type="text"],
.tabela-admin input[type="email"],
.tabela-admin input[type="password"] {
    width: 100%;
    min-width: 180px;
    padding: 9px 10px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
}

.tabela-admin input[type="radio"],
.tabela-admin input[type="checkbox"] {
    transform: scale(1.1);
    cursor: pointer;
}

.btn-salvar {
    background: #092444;
    color: white;
    border: none;
    padding: 9px 14px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

.btn-salvar:hover {
    background: #004a80;
}

.btn-principal {
    background: #004a80;
    color: white;
    border: none;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    width: fit-content;
}

.btn-principal:hover {
    background: #092444;
}