/* Whistleblowing System Premium styling */
            .wbs-header-card {
                background: linear-gradient(135deg, #e0f7f4 0%, #f0fdf9 40%, #ecfdf5 100%);
                border-radius: 20px;
                padding: 40px;
                color: #0f172a;
                margin-bottom: 40px;
                position: relative;
                overflow: hidden;
                border: 1px solid rgba(0, 200, 160, 0.2);
                box-shadow: 0 10px 40px rgba(0, 200, 160, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);
            }

            .wbs-header-card::before {
                content: '';
                position: absolute;
                top: -50%;
                right: -10%;
                width: 300px;
                height: 300px;
                border-radius: 50%;
                background: radial-gradient(circle, rgba(0, 200, 160, 0.25) 0%, transparent 70%);
                filter: blur(25px);
            }

            .wbs-badge {
                background: rgba(0, 170, 130, 0.1);
                border: 1px solid rgba(0, 170, 130, 0.3);
                color: #007a5e;
                padding: 6px 14px;
                border-radius: 30px;
                font-size: 13px;
                font-weight: 600;
                display: inline-flex;
                align-items: center;
                gap: 6px;
                margin-bottom: 20px;
            }

            .wbs-card {
                background: #fff;
                border: 1px solid #e2e8f0;
                border-radius: 20px;
                padding: 30px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
                transition: all 0.3s ease;
                margin-bottom: 30px;
            }

            .wbs-card:hover {
                box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
            }

            .wbs-section-title {
                font-size: 18px;
                font-weight: 700;
                color: #0f172a;
                margin-bottom: 25px;
                display: flex;
                align-items: center;
                gap: 10px;
                padding-bottom: 10px;
                border-bottom: 2px solid #f1f5f9;
            }

            .wbs-section-title i {
                color: #00FFD0;
                font-size: 20px;
            }

            .form-group-label {
                font-weight: 600;
                color: #344054;
                margin-bottom: 8px;
                font-size: 14px;
            }

            .wbs-input {
                border: 1px solid #d0d5dd;
                border-radius: 12px;
                padding: 12px 16px;
                font-size: 14px;
                color: #1d2939;
                transition: all 0.3s ease;
                background-color: #fff;
            }

            .wbs-input:focus {
                border-color: #00FFD0;
                box-shadow: 0 0 0 4px rgba(0, 255, 208, 0.12);
                outline: none;
            }

            .wbs-input::placeholder {
                color: #98a2b3;
            }

            .wbs-input:disabled,
            .wbs-input[readonly] {
                background-color: #f8fafc;
                border-color: #cbd5e1;
                color: #94a3b8;
                cursor: not-allowed;
            }

            /* Custom switch styling */
            .wbs-switch-wrapper {
                background: #f8fafc;
                border: 1px solid #e2e8f0;
                border-radius: 16px;
                padding: 16px 20px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                margin-bottom: 24px;
                transition: all 0.3s;
            }

            .wbs-switch-wrapper:hover {
                border-color: #cbd5e1;
            }

            .wbs-switch-label {
                display: flex;
                flex-direction: column;
            }

            .wbs-switch-title {
                font-weight: 700;
                color: #0f172a;
                font-size: 15px;
                display: flex;
                align-items: center;
                gap: 8px;
            }

            .wbs-switch-title i {
                color: #059669;
            }

            .wbs-switch-desc {
                font-size: 12px;
                color: #64748b;
                margin-top: 2px;
            }

            .wbs-switch {
                position: relative;
                display: inline-block;
                width: 50px;
                height: 28px;
            }

            .wbs-switch input {
                opacity: 0;
                width: 0;
                height: 0;
            }

            .wbs-slider {
                position: absolute;
                cursor: pointer;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background-color: #cbd5e1;
                transition: .4s;
                border-radius: 34px;
            }

            .wbs-slider:before {
                position: absolute;
                content: "";
                height: 20px;
                width: 20px;
                left: 4px;
                bottom: 4px;
                background-color: white;
                transition: .4s;
                border-radius: 50%;
                box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            }

            input:checked+.wbs-slider {
                background-color: #059669;
            }

            input:checked+.wbs-slider:before {
                transform: translateX(22px);
            }

            /* Grid layout for violation items */
            .violation-grid {
                display: grid;
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                gap: 16px;
                margin-bottom: 24px;
            }

            .violation-card {
                border: 1px solid #e2e8f0;
                border-radius: 16px;
                padding: 16px;
                cursor: pointer;
                transition: all 0.25s ease;
                display: flex;
                align-items: flex-start;
                gap: 14px;
                background: #fff;
                position: relative;
                user-select: none;
            }

            .violation-card:hover {
                border-color: #00FFD0;
                transform: translateY(-2px);
                box-shadow: 0 6px 20px rgba(0, 255, 208, 0.08);
            }

            .violation-card.active {
                border-color: #00FFD0;
                background-color: rgba(0, 255, 208, 0.04);
                box-shadow: 0 0 0 1px #00FFD0;
            }

            .violation-card .icon-box {
                width: 40px;
                height: 40px;
                border-radius: 12px;
                background: #f1f5f9;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 18px;
                color: #64748b;
                flex-shrink: 0;
                transition: all 0.3s;
            }

            .violation-card.active .icon-box {
                background: #00FFD0;
                color: #0f172a;
            }

            .violation-card .text-content {
                display: flex;
                flex-direction: column;
                padding-right: 12px;
            }

            .violation-card .card-title {
                font-size: 13px;
                font-weight: 700;
                color: #0f172a;
                line-height: 1.4;
            }

            .violation-card .card-desc {
                font-size: 11px;
                color: #64748b;
                margin-top: 4px;
                line-height: 1.3;
            }

            .violation-card .check-indicator {
                position: absolute;
                top: 12px;
                right: 12px;
                width: 18px;
                height: 18px;
                border-radius: 50%;
                border: 2px solid #cbd5e1;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 10px;
                color: transparent;
                transition: all 0.2s;
            }

            .violation-card.active .check-indicator {
                border-color: #00FFD0;
                background: #00FFD0;
                color: #0f172a;
            }

            /* Radio Pills styling */
            .radio-pill-group {
                display: inline-flex;
                background: #f1f5f9;
                padding: 4px;
                border-radius: 30px;
                border: 1px solid #e2e8f0;
            }

            .radio-pill-item {
                position: relative;
            }

            .radio-pill-item input {
                position: absolute;
                opacity: 0;
                width: 0;
                height: 0;
            }

            .radio-pill-label {
                display: block;
                padding: 10px 28px;
                border-radius: 25px;
                font-size: 14px;
                font-weight: 600;
                cursor: pointer;
                color: #64748b;
                transition: all 0.3s;
                text-align: center;
                user-select: none;
            }

            .radio-pill-item input:checked+.radio-pill-label {
                background: linear-gradient(137.35deg, #00FFD0 0%, #3FFF21 181.6%);
                color: #0f172a;
                box-shadow: 0 4px 12px rgba(0, 255, 208, 0.2);
            }

            /* Submit Button styling */
            .btn-wbs-submit {
                background: linear-gradient(137.35deg, #00FFD0 0%, #3FFF21 181.6%);
                color: #0f172a;
                font-weight: 700;
                font-size: 16px;
                padding: 14px 32px;
                border-radius: 12px;
                border: none;
                box-shadow: 0 4px 15px rgba(0, 255, 208, 0.25);
                transition: all 0.3s ease;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
                width: 100%;
            }

            .btn-wbs-submit:hover {
                transform: translateY(-2px);
                box-shadow: 0 6px 20px rgba(0, 255, 208, 0.4);
            }

            .btn-wbs-submit:active {
                transform: translateY(0);
            }

            .btn-wbs-submit:disabled {
                background: #e2e8f0;
                color: #94a3b8;
                box-shadow: none;
                cursor: not-allowed;
                transform: none;
            }

            /* Sidebar styles */
            .wbs-sidebar-card {
                border-radius: 20px;
                overflow: hidden;
                border: 1px solid #e2e8f0;
                margin-bottom: 30px;
                background: #fff;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
            }

            .wbs-sidebar-header {
                background: linear-gradient(135deg, #e0f7f4 0%, #f0fdf9 100%);
                color: #0f172a;
                padding: 20px 24px;
                font-weight: 700;
                font-size: 15px;
                display: flex;
                align-items: center;
                gap: 10px;
                border-bottom: 1px solid rgba(0, 200, 160, 0.15);
            }

            .wbs-sidebar-header i {
                color: #007a5e;
                font-size: 18px;
            }

            .wbs-sidebar-body {
                padding: 24px;
            }

            /* Timeline Process Steps */
            .wbs-timeline {
                position: relative;
                padding-left: 28px;
            }

            .wbs-timeline::before {
                content: '';
                position: absolute;
                left: 9px;
                top: 8px;
                bottom: 8px;
                width: 2px;
                background: #cbd5e1;
            }

            .wbs-timeline-item {
                position: relative;
                margin-bottom: 24px;
            }

            .wbs-timeline-item:last-child {
                margin-bottom: 0;
            }

            .wbs-timeline-dot {
                position: absolute;
                left: -28px;
                top: 4px;
                width: 20px;
                height: 20px;
                border-radius: 50%;
                background: #fff;
                border: 2px solid #cbd5e1;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 10px;
                font-weight: 700;
                color: #64748b;
                transition: all 0.3s;
            }

            .wbs-timeline-item.active .wbs-timeline-dot {
                border-color: #00FFD0;
                background: #00FFD0;
                color: #0f172a;
                box-shadow: 0 0 0 4px rgba(0, 255, 208, 0.2);
            }

            .wbs-timeline-content {
                display: flex;
                flex-direction: column;
            }

            .wbs-timeline-title {
                font-size: 13px;
                font-weight: 700;
                color: #0f172a;
                line-height: 1.3;
            }

            .wbs-timeline-desc {
                font-size: 11px;
                color: #64748b;
                margin-top: 4px;
                line-height: 1.4;
            }

            /* Success state */
            .wbs-success-state {
                text-align: center;
                padding: 40px 20px;
            }

            .wbs-success-icon {
                width: 80px;
                height: 80px;
                border-radius: 50%;
                background: rgba(0, 255, 208, 0.1);
                color: #059669;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 40px;
                margin: 0 auto 24px;
                border: 2px solid rgba(0, 255, 208, 0.3);
                animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            }

            @keyframes scaleIn {
                from {
                    transform: scale(0.5);
                    opacity: 0;
                }

                to {
                    transform: scale(1);
                    opacity: 1;
                }
            }

            .wbs-success-title {
                font-size: 22px;
                font-weight: 700;
                color: #0f172a;
                margin-bottom: 12px;
            }

            .wbs-success-desc {
                color: #5D6A83;
                font-size: 14px;
                line-height: 1.6;
                max-width: 480px;
                margin: 0 auto 30px;
            }

            /* Field validation error styling */
            .wbs-invalid-feedback {
                color: #ef4444;
                font-size: 12px;
                font-weight: 600;
                margin-top: 6px;
                display: flex;
                align-items: center;
                gap: 6px;
            }

            .wbs-input-error {
                border-color: #ef4444 !important;
                background-color: #fef2f2 !important;
            }

            .wbs-input-error:focus {
                box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12) !important;
            }

            .violation-error-border {
                border-color: #ef4444 !important;
            }

            /* Pulse animation for uploading state */
            @keyframes pulse {
                0% {
                    opacity: 1;
                }

                50% {
                    opacity: 0.5;
                }

                100% {
                    opacity: 1;
                }
            }

            .wbs-pulse {
                animation: pulse 1.5s infinite;
            }

            /* Style override for original page spacings */
            .wbs-archive {
                padding-top: 140px !important;
            }