        body {
            background-color: #f3f4f6;
            min-height: 100vh;
            margin: 0;
            font-family: 'Tajawal', sans-serif;
        }

        .card {
            background: #ffffff;
            border-radius: 0 !important;
            border: 1px solid #e5e7eb;
            box-shadow: none !important;
            overflow: hidden;
        }

        .card-header {
            background: transparent;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .nav-tabs .nav-link {
            color: #6b7280;
            border: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .nav-tabs .nav-link.active {
            color: #4f46e5;
            background: #ffffff;
            border-radius: 0 !important;
            border-bottom: 2px solid #4f46e5;
}

        .nav-tabs .nav-link:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.1);
        }

        .tab-content {
            background: white;
            padding: 20px;
            border-radius: 0 !important;
            position: relative;
            overflow: hidden;
            border: 1px solid #e5e7eb;
            border-top: none;
}

        .tab-pane {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
            position: absolute;
            top: 20px;
            right: 20px;
            left: 20px;
            visibility: hidden;
            padding: 5px;;
        }

        .tab-pane.active {
            opacity: 1;
            transform: translateY(0);
            visibility: visible;
            position: relative;
        }

        .form-control {
            background: #f9fafb;
            color: #111827;
            padding: 12px;
            transition: all 0.3s ease;
            border: 1px solid #d1d5db;
            border-radius: 0 !important;
        }

        .form-control:focus {
            background: #ffffff;
            box-shadow: none;
            border-color: #4f46e5;
            color: #111827;
        }

        .form-control::placeholder {
            color: rgba(0, 0, 0, 0.5);
        }

        .btn-primary {
            background-color: #4f46e5;
            color: #ffffff;
            border: none;
            border-radius: 0 !important;
            padding: 12px;
            font-weight: 500;
            transition: all 0.2s ease;
        }

        .btn-primary:hover {
            background-color: #4338ca;
            box-shadow: none;
        }

        .form-check-input {
            margin-top: 0.3em;
            margin-left: 0.5em;
            /* Adjust for RTL */
            margin-right: 0;
            /* Reset margin for RTL */
        }

        .form-check-label {
            color: #333;
        }

        .fa-icon {
            margin-left: 10px;
            /* Flip icon margin for RTL */
            margin-right: 0;
            /* Reset margin for RTL */
        }
