.solicitacao-remocao-ip-main {
    background: #f5f7fa;
    min-height: 100vh;
}

/* page wrapper centers the card between header and footer */
.page-wrapper{ display:flex; align-items:center; justify-content:center; min-height: calc(100vh - 160px); padding:28px 12px; box-sizing:border-box; }

.solicitacao-card {
    display: block;
    width:100%;
    max-width: 820px;
    margin: 0 auto;
    padding: 28px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e6e6e6;
    box-shadow: 0 10px 30px rgba(20, 20, 20, 0.06);
    box-sizing: border-box;
}

.solicitacao-card h1 {
    margin-top: 0;
    color: #333;
    font-family: inherit
}

.solicitacao-card label {
    display: block;
    margin: 8px 0 4px;
    font-weight: 600
}

.solicitacao-card input[type=text],
.solicitacao-card input[type=email] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 360px;
    max-width: 100%
}

/* Make header nav links slightly tighter on desktop so new item fits better */
@media (min-width: 900px) {
    header .headerNav a { padding: 8px 10px; font-size: 14px; }
    header .headerNav a img.mobile { width: 48px; height: auto }
}

/* Compact sidebar link layout for desktop dashboards */
@media (min-width: 1024px) {
    .dash .sidebar > div > span > a svg { width: 18px; margin-right: 8px }
    .dash .sidebar > div > span > a > p { font-size: 13px }
    .dash .sidebar { width: 280px }
    .dash .content { margin-left: 320px }
}

.solicitacao-card button {
    margin-top: 8px;
    padding: 10px 14px;
    background: #0072c6;
    border: none;
    color: #fff;
    border-radius: 6px;
    cursor: pointer
}

.alert {
    padding: 10px;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #ddd
}

.alert-success {
    background: #e6ffed;
    border-color: #b7f0c8
}

.alert-error {
    background: #fff1f0;
    border-color: #f0b6b6
}

.solicitacao-notes {
    margin-top: 18px;
    color: #555;
    font-size: 0.95em
}


/* Result page tweaks */
.resultado-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
    padding: 18px
}
.resultado-box p {
    margin: 0
}
.resultado-actions {
    margin-top: 14px
}
.btn-secondary {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 6px;
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
    border: 1px solid #ddd
}
.btn-primary {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 6px;
    background: #0072c6;
    color: #fff;
    text-decoration: none;
    border: none
}

.formulario-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    width: 100%;
}

.input-invalid { border-color: #e06a6a !important; box-shadow: 0 0 0 3px rgba(224,106,106,0.06); }
.field-error { color: #b00020; font-size: 0.92em; margin-top:6px; }

@media (max-width:600px) {
    .solicitacao-card {
        padding: 16px;
        min-height: auto;
        margin: 10px;
    }
}