@font-face {
    font-family: 'IRANSansWeb';
    src: url('../fonts/IRANSans-Bold-web.eot');
    src: url("../fonts/IRANSans-Bold-web.eot#iefix") format("embedded-opentype"),url("../fonts/IRANSans-Bold-web.woff") format("woff"),url("../fonts/IRANSans-Bold-web.ttf") format("truetype"),url("../fonts/IRANSans-Bold-web.svg") format("svg");
    font-style: normal;
    font-weight: bold
}

@font-face {
    font-family: 'IRANSansWeb';
    src: url('../fonts/IRANSans-Medium-web.eot');
    src: url("../fonts/IRANSans-Medium-web.eot#iefix") format("embedded-opentype"),url("../fonts/IRANSans-Medium-web.woff") format("woff"),url("../fonts/IRANSans-Medium-web.ttf") format("truetype"),url("../fonts/IRANSans-Medium-web.svg") format("svg");
    font-style: normal;
    font-weight: normal
}

        body {
           font-family: IRANSansWeb,Arabic,Tahoma;
        }
        
        h1, h2 {
            font-family: IRANSansWeb,Arabic,Tahoma;
        }
        
        .submit-btn, .confirmation-box button {
            font-family: IRANSansWeb,Arabic,Tahoma;
        }
        
        .counter button {
            font-family: IRANSansWeb,Arabic,Tahoma;
        }
        
        .rules label {
           font-family: IRANSansWeb,Arabic,Tahoma;
        }

         .guest-form {
                    padding: 10px;
                }
        
                .form-group {
                    margin-bottom: 15px;
                }
        
                .form-group label {
                    display: block;
                    margin-bottom: 5px;
                    font-family: 'IRANSansWeb';
                    font-size: 14px;
					color: #333;
                }
        
                .form-input {
                    width: 100%;
                    padding: 8px;
                    border: 1px solid #ddd;
                    border-radius: 4px;
                    font-family: 'IRANSansWeb';
                    box-sizing: border-box;
                }
                h1 {
                    text-align: center;
                    margin: 0 0 20px 0;
                }
       
        body {
            font-family: 'IRANSansWeb', Arial, sans-serif;
            background-color: #000742;
            background-repeat: repeat;
            background-attachment: fixed;
            color: #333;
            margin: 0;
            min-height: 100vh;
            direction: rtl;
        }
 
        
        .box {
            background-color: white;
            color: #000742;
            padding: 20px;
            border-radius: 10px;
            min-height: 600px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        h1, h2 {
            text-align: center;
            margin: 0 0 20px 0;
        }
        
        .table-container {
            width: 100%;
            overflow-y: auto;
            flex-grow: 1;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 0 auto;
        }
        
        th, td {
            padding: 8px;
            text-align: center;
            border: 1px solid #ddd;
            font-size: 12px;
        }
        
        .counter {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }
        
        .counter button {
            background-color: #000742;
            color: white;
            border: none;
            padding: 2px 8px;
            cursor: pointer;
            border-radius: 3px;
            font-size: 14px;
        }
        
        .counter button:hover {
            background-color: #333;
        }
        
        .counter span {
            margin: 0 5px;
            font-size: 14px;
        }
        
        .rules {
            margin-top: 20px;
            text-align: center;
        }
        
        .rules label {
            font-size: 14px;
            color: #000742;
        }
        
        .submit-btn {
            margin-top: 20px;
            padding: 10px 20px;
            background-color: #00ffaa;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
        }
        
        .submit-btn:disabled {
            background-color: #ccc;
            cursor: not-allowed;
        }
        
        .confirmation-box {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: white;
            color: #252525;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            width: 400px;
            text-align: center;
        }
        
        .confirmation-box h3 {
            margin-top: 0;
        }
        
        .confirmation-box ul {
            list-style-type: none;
            padding: 0;
        }
        
        .confirmation-box ul li {
            margin: 10px 0;
        }
        
        .confirmation-box button {
            margin: 10px;
            padding: 8px 16px;
            background-color: #202020;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }
        
        @media (max-width: 1200px) {
            .box {
                width: 45%;
            }
        }
        
        @media (max-width: 768px) {
            .box {
                width: 90%; 
            }
        
            h1 {
                font-size: 24px; 
            }
        
            h2 {
                font-size: 20px; 
            }
        
            .submit-btn {
                width: 100%; 
                background-color: #000000;
            }
        
            .confirmation-box {

                width: 90%; 
            }
        
            table {
                font-size: 10px; 
            }
        
            th, td {
                padding: 5px; 
            }
        }
        
        @media (max-width: 480px) {
            .box {
                width: 100%; 
                padding: 10px; 
            }
        
            h1 {
                font-size: 20px !important; 
            }
        
            h2 {
                font-size: 18px; 
            }
        
            .submit-btn {
                font-size: 14px; 
                background-color: #00ffaa;
            }
            .confirmation-box {
                padding: 10px;
            }
        
            table {
                font-size: 8px;
            }
        
            th, td {
                padding: 3px;
            }
        }
        p {
            text-align: justify;
            line-height: 1.6;
            font-size: 11px;
            color: #333;
        }
