   .modal-content {
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .modal-header {
      background-color: #8e969c;
      color: white;
      border-top-left-radius: 12px;
      border-top-right-radius: 12px;
    }

    .modal-footer {
      background-color: #f1f1f1;
      border-bottom-left-radius: 12px;
      border-bottom-right-radius: 12px;
    }

    .modal-title {
      font-weight: 700;
    }

    .btn-close {
      background: transparent;
      border: none;
      font-size: 1.5rem;
    }

    .btn-close:hover {
      color: #fff;
    }

    .btn-secondary {
      background-color: #8e969c;
      border: none;
      border-radius: 5px;
      padding: 10px 20px;
    }

    .btn-secondary:hover {
      background-color: #2e59d9;
    }

    .modal-body {
      font-size: 1.1rem;
    }

    .modal-body p,
    .modal-body ul {
      line-height: 1.6;
    }

    .modal-body ul {
      padding-left: 20px;
    }
	
	.table th{background:#8e969c; color:#fff}
	.table th, .table td{padding:6px}
	.modal-body h1{font-size:26px; font-weight:600}
	
	    .modal-header {
      padding: 0.8rem 1rem;  /* Adjust values as needed */
    }
	
	.btn-success{background:#0a9743}

    .modal-footer {
      padding: 0.3rem 1rem;  /* Adjust values as needed */
    }
	
	        /* Apply light grey background color to the even rows */
        table tr:nth-child(even) td {
            background-color: #f6f6f6;
        }

        /* Optional: Style the table for better readability */
        table {
            width: 100%;
            border-collapse: collapse;
        }
        
        td, th {
            border: 1px solid #ddd;
            padding: 8px;
            text-align: left;
        }

        th {
            background-color: #f2f2f2;
        }
		
		td{font-size:15px}
		
        body {
            font-family: Arial, sans-serif;
 
        }
        .popup-container {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
        }
        .popup {
            background: white;
            padding: 20px;
            width: 450px;
            border-radius: 8px;
            text-align: left;
            position: relative;
        }
        .popup h2 {
            margin-top: 0;
        }
        .close-btn {
            position: absolute;
            top: 10px;
            right: 15px;
            cursor: pointer;
            font-size: 18px;
            font-weight: bold;
        }
        .form-group {
            margin-bottom: 10px;
        }
        .form-group label {
            display: block;
            font-weight: bold;
        }
        .form-group input {
            width: 100%;
            padding: 8px;
            margin-top: 5px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        .submit-btn {
            background: #28a745;
            color: white;
            padding: 10px;
            width: 100%;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        .submit-btn:hover {
            background: #218838;
        }
		
		.popup h2{font-size:1.5rem}		
		