* {
    direction: rtl;
    font-family: "Noto Kufi Arabic", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

h1 {
    color: blue;
    font-weight: 800;
    border-bottom: 1px dashed blue;
    padding-bottom: 0.5rem;
    text-align: center;
    background: #4d4d4d2e;
}

h2 {
    color: rgb(4, 45, 158);
    border-bottom: 1px dashed rgb(4, 45, 158);
    font-weight: 700;
    background: #042d9e21;
}

footer {
    color: maroon;
    background-color: rgba(80, 65, 59, 0.315);
    font-weight: bold;
    font-size: 1.25rem;
}

@page {
    size: A4;
    margin: 0;
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-right: 3.5mm;
}

@media print {
    html,
    body {
        width: 200mm;
        height: 297mm;
    }

    .form-select {
        padding-right: 0.75rem;
    }
    
    .form-select::-ms-expand {
        color: greenyellow;
        border: 4px dotted red;
    }
    
    h1 {
        color: red;
    }
      
}