body {
  font-family: Arial, sans-serif;
  background-color: #CBCBCB;
  margin: 0; /* Ensure no default margin on the body */
}

h1 {
  background-color: #03256C;
  color: white;
  padding: 10px;
  text-align: left; /* Keep text aligned left */
  margin: 0; /* Remove default margin */
}

.spacing {
  margin-top: .5in;
  font-weight: bold;
}

form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 500px; /* Keep your original width */
  padding: 10px; /* Add padding for aesthetics */
}

.custom-file-upload {
  display: inline-block;
  padding: 10px 20px;
  cursor: pointer;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.custom-file-upload:hover {
  background-color: #0056b3;
}

.file-name-box {
  flex: 1;
  height: 26px;
  width: 100%; /* Ensure the file name box takes full width */
  background-color: #637ba6;
  color: #333;
  border-radius: 5px;
  padding: 8px;
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
}

#progressBarContainer {
  width: 100%;
  background-color: #f3f3f3;
  border-radius: 5px;
  overflow: hidden;
  display: none; /* Keep hidden by default */
}

#progressBar {
  height: 20px;
  width: 0;
  background-color: #007BFF;
  text-align: center;
  line-height: 20px;
  color: white;
}

button, input[type="submit"] {
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 10px; /* Space between buttons */
  align-self: flex-start; /* Align buttons to start of form */
}

button:hover, input[type="submit"]:hover {
  background-color: #0056b3;
}

button[disabled], input[type="submit"][disabled] {
  background-color: #637ba6;
  color: white;
  cursor: not-allowed;
}

input[type="file"] {
  display: none; /* Hide actual file input */
}

#filesButton {
  background-color: #297373;
  color: white;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 10px;
  margin-left: 10px;
}

#filesButton:hover {
  background-color: #245e5e;
}

.top-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #297373;
  color: white;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
  margin-left: 10px;
  margin-top: 10px;
}
.top-button:hover {
  background-color: #245e5e;
}
.file-button {
            display: inline-block;
            padding: 10px 20px;
            background-color: #007BFF;
            color: white;
            border: none;
            border-radius: 5px;
            text-decoration: none;
            transition: background-color 0.3s;
            margin-right: 10px;
			margin-left: 10px;
            margin-top: 10px;
        }
        .file-button:hover {
            background-color: #0056b3;
        }
        .delete-button {
			background-color: #FF4D4D;
			color: white;
			border: none;
			border-radius: 5px;
			padding: 20px 16px; /* Adjusted padding to match file button height */
			font-size: 16px;
			cursor: pointer;
			transition: background-color 0.3s;
			display: inline-flex;
			align-items: center;
			margin-left: 5px;
			margin-top: 10px;
			height: 36px; /* Explicitly set the same height as file button */
		}
        .delete-button:hover {
            background-color: #cc0000;
        }
        .go-back-button {
            display: inline-block;
            padding: 10px 20px;
            background-color: #297373;
            color: white;
            border: none;
            border-radius: 5px;
            text-decoration: none;
            transition: background-color 0.3s;
			margin-left: 10px;
            margin-top: 10px;
        }
        .go-back-button:hover {
            background-color: #245e5e;
                }
        ul {
            list-style-type: none;
            padding: 0;
        }
        li {
            margin: 10px 0;
            display: flex;
            align-items: center;
        }
		/* Styling for input fields in the login form */
.input-box {
  flex: 1;
  height: 26px;
  width: 100%;
  background-color: #637ba6;
  color: #333;
  border-radius: 5px;
  padding: 8px;
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  margin-top: 10px; /* Add space between fields */
}

/* Apply .custom-file-upload styling to the login button */
input[type="submit"].login-button {
  display: inline-block;
  padding: 10px 20px;
  cursor: pointer;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s;
  margin-top: 10px; /* Space between input and button */
}

input[type="submit"].login-button:hover {
  background-color: #0056b3;
}
/* Center the logo container */
.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.logo .z, .logo .s {
  width: 100px; /* Adjust size */
  height: 100px;
  margin: 10px;
}