﻿.modal {
            display: none; /* Hidden by default */
            position: fixed;
            z-index: 1000; /* Sit on top */
            left: 0;
            top: 0;
            width: 100%; /* Full width */
            height: 100%; /* Full height */
            background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
            overflow: auto; /* Enable scroll if needed */
        }

        .modal-content {
            background-color: #fff;
            margin: 10% auto; /* Margin from top, center horizontally */
            padding: 20px;
            border-radius: 0px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            width: 90%;
            max-width: 400px; /* Limit to a max width for bigger screens */
            text-align: center;
        }

        .modal-header {
            font-size: 20px;
            color: #fff;
            background-color: #001f3f; /* Dark background for header */
            padding: 10px;
            border-radius: 8px 8px 0 0; /* Rounded corners on top */
        }

        .modal-header .close {
            float: right;
            font-size: 24px;
            cursor: pointer;
            color: #fff;
        }

        .modal-body img {
            width: 50%; /* Image fits within the content */
            margin-bottom: 15px;
			text-align:center;
        }

        .modal-body {
            text-align: left;
            padding: 10px 20px;
        }

        .modal-body h3 {
            color: red; /* Error message color */
        }

        .modal-body .note {
            color: red;
            font-weight: bold;
        }

        .modal-footer {
            padding: 10px 0;
        }

        .modal-footer button {
            background-color: #007bff;
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
        }

        .modal-footer button:hover {
            background-color: #0056b3;
        }

  