    body {
        font-family: 'Aptos', Arial, sans-serif; /* Set the entire body font to Aptos */
        margin: 0;
        padding: 0;
        background: #f5f5f5;
    }
        /* ... other styles ... */
    .disclaimer-label {
        color: red; /* Set the disclaimer label text color to red */
    }
    .disclaimer-content {
        font-style: italic; /* Make the disclaimer content italic */
        color: black; /* Explicitly set the disclaimer content color to black if needed */
    }
    header {
        background: #343a40;
        color: white;
        padding: 1em;
        text-align: center;
    }
    main {
        max-width: 800px;
        margin: 20px auto;
        padding: 20px;
        background: #ffffff;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
    form {
        margin-bottom: 20px;
    }
    #response {
        border: 2px solid #ccc;
        padding: 15px;
        margin: 15px 0;
        border-radius: 8px;
        background-color: #f9f9f9;
		color: #333333;
      	text-align: left;
      	text-justify: inter-word;
    }
    img {
        max-width: 100%;
    }
    @media (max-width: 768px) {
        main {
            padding: 15px;
            margin: 10px auto;
        }
        header, form, #response {
            padding: 10px;
        }
    }
        input[type="file"] {
        display: none;
    }
    .custom-file-upload {
        border: 1px solid #ccc;
        display: inline-block;
        padding: 6px 12px;
        cursor: pointer;
    }
    input[type="submit"] {
        background-color: #007bff;
        color: #495b60;
        padding: 14px 20px;
        border: none;
        cursor: pointer;
    }
    input[type="submit"]:hover {
        background-color: #0056b3;
    }
	.custom-file-upload {
    	background-color: #df7a00; /* Red background */
    	color: #ffffff; /* White text */
		font-weight:bold;

	}

	.response-box {
    	border: 1px solid #000000;
    	padding: 15px;
    	margin-bottom: 10px;
    	background-color: #df7a00;
    	margin-top: 10px;
    	color:#4e4f4f;
    	font-weight:bold;
	}
