.sacro-wp-wrapper {
    max-width: 760px;
    margin: 20px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #1f2937;
}

.sacro-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.sacro-card-header {
    border-bottom: 2px solid #053FAB; /*#7c3aed*/
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.sacro-card-header h3 {
    color: #053FAB !important; /*#7c3aed*/
    margin: 0 0 6px 0 !important;
    font-size: 1.2rem !important;
    font-weight: 700;
}

.sacro-card-header p {
    color: #6b7280;
    font-size: 0.82rem;
    margin: 0;
}

.sacro-section-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #053FAB;  /*#7c3aed*/
    margin: 18px 0 10px 0;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 4px;
}

.sacro-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sacro-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.sacro-grid-4 { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 12px; }

@media (max-width: 640px) {
    .sacro-grid-2, .sacro-grid-3, .sacro-grid-4 {
        grid-template-columns: 1fr !important;
    }
}

.sacro-group { margin-bottom: 12px; }
.sacro-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 4px;
}

.sacro-input {
    width: 100% !important;
    padding: 10px 12px !important;
    background: #f9fafb !important;
    border: 1px solid #d1d5db !important;
    border-radius: 6px !important;
    font-size: 0.85rem !important;
    color: #111827 !important;
    box-sizing: border-box !important;
}

.sacro-input:focus {
    border-color: #053FAB !important; /*#7c3aed*/
    outline: none !important;
    background: #ffffff !important;
}

.sacro-chk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 8px;
    background: #f9fafb;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

.sacro-chk-grid label {
    font-size: 0.8rem;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sacro-btn {
    width: 100%;
    background: #053FAB !important; /*7c3aed*/
    color: #ffffff !important;
    border: none !important;
    padding: 12px !important;
    border-radius: 6px !important;
    font-weight: bold !important;
    font-size: 0.9rem !important;
    cursor: pointer !important;
    margin-top: 15px;
    transition: background 0.2s;
}

.sacro-btn:hover { background: #6d28d9 !important; }