/* Container principal */
.svpmd-settings {
    background: #fff;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Layout de duas colunas */
.svpmd-container {
    display: flex;
    gap: 20px;
}

.svpmd-left-column {
    flex: 2;
}

.svpmd-right-column {
    flex: 1;
}

/* Formulário */
.svpmd-form {
    max-width: 100%;
}

/* Títulos */
.svpmd-settings h2 {
    margin-bottom: 20px;
    color: #23282d;
}

.svpmd-settings h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #23282d;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 5px;
}

.svpmd-donation h3 {
    margin-top: 0;
    color: #23282d;
}

/* Título do método de pagamento */
.svpmd-gateway-title {
    margin: 0 0 10px 0;
    color: #1d2327;
    font-size: 14px;
    font-weight: 600;
}

/* Container de cada método de pagamento */
.svpmd-gateway {
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 4px;
    border: 1px solid #ddd;
}

/* Campos de entrada */
.svpmd-input {
    width: 100%;
    max-width: 300px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
}

/* Dropdown de idioma */
.svpmd-select {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
}

/* Descrições */
.svpmd-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Seção de doação */
.svpmd-donation {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
}

/* Botão de salvar */
.svpmd-form .button-primary {
    background: #0073aa;
    border-color: #006799;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
}

.svpmd-form .button-primary:hover {
    background: #006799;
    border-color: #005a87;
}

/* Layout flexível para os botões de doação */
.svpmd-donation-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.svpmd-qr-code {
    flex: 2;
}

.svpmd-qr-code img {
    max-width: 200px;
    height: auto;
}

.svpmd-paypal-button {
    flex: 1;
}

.svpmd-paypal-button form {
    margin: 0;
}