.page-container {
    width: 70%; /* Make the content span 80% of the page width */
    margin: 70 auto; /* Center the content horizontally */
    padding: 20px; /* Add padding around the content */
    box-sizing: border-box; /* Include padding in the width calculation */
    
}

/* Style the title */
.page-title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

/* Style the subtitle */
.page-subtitle {
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
    color: #555; /* Subtle gray color for the subtitle */
}

/* Style the input fields */
input[type="text"], input[type="tel"] {
    width: 100%; /* Make the input span the full width of the container */
    border: 1px solid #000; /* Add a top border */
    font-size: 16px; /* Adjust font size */
    padding: 5px 0; /* Add some padding for better spacing */
    outline: none; /* Remove the focus outline */
}

/* Add focus effect */
input[type="text"]:focus, input[type="tel"]:focus {
    border-bottom: 2px solid #007BFF; /* Change bottom border color on focus */
}

input[type="stack"] {
    width: 100%; /* Make the input span the full width of the container */
    border: none; /* Remove the border */
    border-right: 1px solid #000; /* Add a right border */
    border-left: 1px solid #000; /* Add a left border */
    font-size: 16px; /* Adjust font size */
    padding: 5px 0; /* Add some padding for better spacing */
    outline: none; /* Remove the focus outline */
}

/* Style the labels */
label {
    font-size: 14px;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
}

/* Add spacing between fields */
.form-group {
    margin-bottom: 20px;
}

/* Flex container for City, State, and ZIP */
.flex-container {
    display: flex;
    gap: 20px; /* Add spacing between fields */
    margin-bottom: 15px; 
}

.flex-container .flex-item {
    flex: 1; /* Make all items take equal space */
}

.flex-container .flex-item-small {
    flex: 0.5; /* Smaller width for State and ZIP */
}

.logo-container {
    text-align: center; /* Center the content horizontally */
    margin-bottom: 20px; /* Add some spacing below the logo */
}

.top-logo {
    height: 80px; /* Increase the height of the logo */
    max-width: 100%; /* Ensure the logo doesn't exceed the container width */
}

.signature-canvas {
    border: 1px solid #000;
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    cursor: crosshair;
}

/* Submit Button Container */
.submit-container {
    text-align: right; /* Align the button to the right */
    margin-top: 20px; /* Add some spacing above the button */
}

/* Submit Button Styling */
.btn-submit {
    background-color: #007BFF; /* Blue background */
    color: #fff; /* White text */
    border: none; /* Remove border */
    padding: 10px 20px; /* Add padding */
    font-size: 16px; /* Adjust font size */
    cursor: pointer; /* Pointer cursor on hover */
    border-radius: 5px; /* Rounded corners */
}

/* Style the file input to look like a button */
.btn-upload {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    margin-right: 10px;
    text-transform: none;
    font-weight: normal;
}

.label-regular {
    font-size: 14px;
    font-weight: normal; /* Make the font weight normal */
    display: block;
    margin-bottom: 5px;
    text-transform: none; /* Remove uppercase transformation */
}

.btn-upload:hover {
    background-color: #0056b3;
}

/* Style for the uploaded file name */
.file-name {
    font-size: 14px;
    color: #555;
    margin-left: 10px;
    display: inline-block;
    vertical-align: middle;
}

/* General button styling */
.btn-download,
.btn-upload {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    margin-right: 10px;
}

.btn-download:hover,


.btn-submit:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

#custCreateForm {
    border: 1px solid #000; /* Add a 1px solid black border */
    padding: 20px; /* Add padding inside the form */
    border-radius: 5px; /* Optional: Add rounded corners */
    margin-top: 20px; /* Optional: Add spacing above the form */
    background-color: #f9f9f9; /* Optional: Add a light background color */
}

/* Style for disabled fields */
input:disabled, select:disabled, textarea:disabled {
    background-color: #e9ecef; /* Light gray background */
    color: #6c757d; /* Darker gray text */
    cursor: not-allowed; /* Show "not allowed" cursor */
    border-color: #ced4da; /* Optional: Match border color */
}


/* Go to Top Arrow Styling */
.go-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007BFF; /* Blue background */
    color: white; /* White arrow */
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none; /* Hidden by default */
    z-index: 1000; /* Ensure it appears above other elements */
}

.go-to-top:hover {
    background-color: #0056b3; /* Darker blue on hover */
}