body { margin: 0px; background-color: white; padding: 0.5vw; /* text-align: center; */ font-family: Arial, Helvetica, sans-serif; } :root { --input-bg: hsl(0, 0%, 100%); /* Background color */ --input-border: hsl(210, 10%, 80%); /* Border color */ --input-text: hsl(0, 0%, 20%); /* Text color */ } .border { border: 1px solid black; background-color: lightgray; } .input { margin-right: 1vw; border: 1px solid var(--input-border); padding: 8px; font-size: 16px; background-color: var(--input-bg); color: var(--input-text); border-radius: 4px; transition: border-color 0.2s ease; margin-bottom: 0.5vh; } .input:read-only { /* Styles for readonly inputs */ } .input:disabled { /* Styles for disabled inputs */ } .input:focus { outline: 2px solid var(--input-border); } /* Custom styles for select */ select { -webkit-appearance: none; /* Disable default styling */ font-size: 16px; background-color: var(--input-bg); border: 1px solid var(--input-border); color: var(--input-text); padding: 8px; border-radius: 4px; transition: border-color 0.2s ease; margin-right: 1vw; margin-bottom: 0.5vh; } /* Custom arrow for the select */ select::after { content: ""; position: absolute; top: 50%; right: 10px; transform: translateY(-50%); border: 6px solid transparent; border-top-color: var(--input-text); /* Match text color */ pointer-events: none; /* Allow clicks through */ } select:focus { outline: none; border-color: var(--input-border); /* Highlight border on focus */ } /* Custom styles for textarea */ textarea { resize: vertical; /* Allow vertical resizing */ margin-bottom: 0.5vh; /* Additional styles as needed */ } /* Custom styles for buttons */ .button { background-color: #04AA6D; border: none; color: white; padding: 16px 62px; text-decoration: none; margin: 4px 2px; cursor: pointer; border-radius: 4px; font-size: 20px; transition: background-color 0.2s ease; width: 59%; float: right; text-align: center; } .big_button { background-color: #04AA6D; border: none; color: white; text-decoration: none; cursor: pointer; border-radius: 4px; font-size: 2vw; width: 20vw; height: 8vh; transition: background-color 0.2s ease; text-align: center; margin: 0.5vw; } label { font-size: 16px; color: var(--input-text); /* Match text color */ margin-bottom: 8px; /* Add spacing between labels and inputs */ /* display: block; Ensure labels take up full width */ margin-right: 1vw; margin-left: 1vw; } .button:hover { background-color: #038c5a; /* Darker shade on hover */ } .form_container { position: relative; width: fit-content; background-color: #f5f5f5; height: fit-content; text-align: center; padding: 1vw; border-radius: 2vw; margin-left: auto; margin-right: auto; } .form_container_for_search_results { position: relative; background-color: #f5f5f5; height: fit-content; text-align: center; padding: 1vw; border-radius: 0.5vw; margin-left: auto; margin-right: auto; width: 98%; margin-bottom: 0.5vw; } .landing_page { position: relative; text-align: center; background-color: #282522; width: fit-content; height: fit-content; padding: 2.5vw; z-index: 101; top: 25%; margin-left: auto; margin-right: auto; border-radius: 1.5vw; border: 1px solid #04AA6D; /* box-shadow: 0px 0px 100px 10px; */ } .pdf_header { float: left; border-left: 6px SOLID #038c5a; padding-left: 41px; margin-left: 20px; margin-top: 300px; } .pdf_heading { font-size: 60px; margin-bottom: -70px; } .logo { float: right; width: 30%; margin-right: 50px; margin-top: 10px; } .pdf_info { float: left; padding-left: 0px; margin-top: 1px; right: 100px; width: 100%; } .content { float: left; width: 100%; margin-top: 10px; margin-left: 10px; margin-right: 10px; /* font-size: 12px; */ } .description { margin-left: 30px; margin-right: 30px; font-size: 12px; } .total { float: right; width: 40%; text-align: center; border-left: 1px solid black; font-size: 20px; } .footer { float: left; width: 100%; border: 1px solid black; border-radius: 10px; margin-top: 30px; } .bank_details { float: left; width: 50%; padding-left: 10px; padding-top: 10px; } .report_header { float: left; width: 100%; text-align: center; font-size: 30px; } .report_table { float: left; width: 100%; margin-left: 10px; margin-top: 20px; margin-right: 10px; font-size: 12px; text-align: center; }