.csa-wrapper {
    max-width: 800px;
    margin: 30px auto;
    padding: 24px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #fff;
}

.csa-form-group {
    margin-bottom: 16px;
}

.csa-form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.csa-form-group input,
.csa-form-group select,
.csa-form-group button {
    width: 100%;
    padding: 10px 12px;
    font-size: 16px;
    box-sizing: border-box;
}

.csa-form-group button {
    cursor: pointer;
    border: none;
    border-radius: 8px;
}

.csa-info {
    margin: 20px 0;
    padding: 16px;
    background: #f7f7f7;
    border-radius: 8px;
}

.csa-resultados {
    display: grid;
    gap: 16px;
}

.csa-card {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 16px;
    background: #fafafa;
}

.csa-card h3 {
    margin-top: 0;
}

.csa-button-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.csa-button-row button {
    width: auto;
    min-width: 180px;
}

.csa-secondary-btn {
    background: #f1f1f1;
    color: #222;
}

.csa-add-panel {
    margin: 20px 0;
    padding: 18px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fafafa;
}

.csa-add-panel h3 {
    margin-top: 0;
}

.csa-add-feedback {
    margin-top: 10px;
    padding: 10px 12px;
    background: #f3f3f3;
    border-radius: 8px;
}

.csa-fab {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #0073aa;
    color: white;
    font-size: 28px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.csa-fab:hover {
    background: #005f8d;
}

.csa-fab-remove {
    position: fixed;
    bottom: 90px; /* acima do botão + */
    right: 25px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #dc3545; /* vermelho */
    color: white;
    font-size: 28px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.csa-fab-remove:hover {
    background: #b02a37;
}