﻿/* Custom modal header style */
        .modal-header {
            background-color: #007bff;
            color: #fff;
            border-bottom: none;
        }

        /* Custom tab style */
        .nav-tabs .nav-link {
            color: #007bff;
            border: none;
            border-bottom: 2px solid transparent;
        }

            .nav-tabs .nav-link.active {
                border-color: #007bff;
                font-weight: bold;
            }

        /* Custom tab content style */
        .tab-content {
            padding: 20px;
        }

        /* Optional: Custom modal size */
        .modal-dialog {
            max-width: 800px; /* Adjust as needed */
        }

        /* Custom form style */
        .subscriber-form {
            max-width: 400px;
            margin: auto;
        }

        /* Ensure form elements are aligned properly for RTL */
        .form-group label {
            float: right;
            text-align: right;
        }

        .form-group input {
            text-align: right;
        }

        /* Align modal close button for RTL */
        /* Align modal close button for RTL */
        .modal-header .close {
            position: absolute;
            left: 1rem;
            right: auto;
            color:#333;
        }