/*========================[ START PRICE SURVEY PROMPT CONTROL ]=========================*/
    /* Custom Styles */
    .admin-section {
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid #007bff;
    }
    
    .form-group label {
        font-weight: 500;
        color: #495057;
    }
    
    .custom-control-label {
        font-weight: 400;
    }
    
    /* Target Audience Toggle */
    .audience-toggle-group {
        background: #f8f9fa;
        padding: 15px;
        border-radius: 6px;
        margin-bottom: 15px;
    }
    
    .audience-toggle-group .btn-group {
        width: 100%;
    }
    
    .audience-toggle-group .btn {
        flex: 1;
    }
    
    /* Survey List Table */
    .survey-list-table {
        margin-top: 20px;
    }
    
    .survey-list-table thead {
        background: #f8f9fa;
    }
    
    .badge-active {
        background: #28a745;
    }
    
    .badge-inactive {
        background: #6c757d;
    }
    
    .badge-scheduled {
        background: #ffc107;
    }
    
    .action-buttons .btn {
        padding: 5px 10px;
        font-size: 0.875rem;
    }
    
    /* Survey Banner Styles */
    .survey-banner {
        position: relative;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 20px 25px;
        margin: 20px 0px 0px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        animation: slideDown 0.4s ease-out;
    }
    
    @keyframes slideDown {
        from {
            transform: translateY(-100%);
        }
        to {
            transform: translateY(0);
        }
    }
    
    .survey-banner .container-fluid {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .survey-banner-content {
        display: flex;
        align-items: center;
        flex: 1;
    }
    
    .survey-banner-icon {
        font-size: 24px;
        margin-right: 15px;
    }
    
    .survey-banner-text {
        margin: 0;
        font-size: 15px;
        font-weight: 400;
    }
    
    .survey-banner-link {
        background: white;
        color: #667eea;
        padding: 8px 20px;
        border-radius: 20px;
        text-decoration: none;
        font-weight: 600;
        margin: 0 15px;
        transition: all 0.3s;
    }
    
    .survey-banner-link:hover {
        background: #f8f9fa;
        color: #764ba2;
        text-decoration: none;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }
    
    .survey-banner-close {
        background: transparent;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
        opacity: 0.8;
        transition: opacity 0.3s;
        padding: 0;
        width: 30px;
        height: 30px;
    }
    
    .survey-banner-close:hover {
        opacity: 1;
    }
    
    /* Modal Styles */
    .survey-modal .modal-content {
        border-radius: 15px;
        border: none;
        overflow: hidden;
    }
    
    .survey-modal .modal-header {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border: none;
        padding: 25px 30px;
    }
    
    .survey-modal .modal-title {
        font-weight: 600;
        display: flex;
        align-items: center;
    }
    
    .survey-modal .modal-title i {
        margin-right: 10px;
        font-size: 24px;
    }
    
    .survey-modal .modal-body {
        padding: 30px;
    }
    
    .survey-modal .modal-footer {
        border-top: 1px solid #e9ecef;
        padding: 20px 30px;
    }
    
    .survey-modal-message {
        font-size: 16px;
        color: #495057;
        margin-bottom: 25px;
        line-height: 1.6;
    }
    
    .btn-survey-primary {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border: none;
        padding: 10px 30px;
        font-weight: 600;
        transition: all 0.3s;
    }
    
    .btn-survey-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    }
    
    /* Admin Preview Box */
    .preview-box {
        background: #f8f9fa;
        border: 2px dashed #dee2e6;
        border-radius: 8px;
        padding: 20px;
        margin-top: 20px;
    }
    
    .preview-title {
        font-weight: 600;
        color: #495057;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
    }
    
    .preview-title i {
        margin-right: 8px;
        color: #007bff;
    }
    
    /* Save Button */
    .btn-save-config {
        padding: 10px 40px;
        font-weight: 600;
    }
    
    /* Empty State */
    .empty-state {
        text-align: center;
        padding: 40px 20px;
        color: #6c757d;
    }
    
    .empty-state i {
        font-size: 48px;
        margin-bottom: 15px;
        opacity: 0.5;
    }
    
    /* Form Actions */
    .form-actions {
        background: #f8f9fa;
        padding: 20px;
        border-radius: 6px;
        margin-top: 30px;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
        .survey-banner .container-fluid {
            flex-direction: column;
            text-align: center;
        }
        
        .survey-banner-content {
            flex-direction: column;
            margin-bottom: 15px;
        }
        
        .survey-banner-icon {
            margin-bottom: 10px;
        }
        
        .survey-banner-link {
            margin: 10px 0;
        }
        
        .action-buttons {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        
        .action-buttons .btn {
            width: 100%;
        }
    }
/*========================[ END PRICE SURVEY PROMPT CONTROL ]=========================*/    
    