* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
}

/* Top Header Styling */
.top-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #ddd;
    z-index: 1000;
}

.header-logo {
    height: 30px;
}

.greeting {
    font-size: 16px;
    color: #333;
}

.maincontent{
	margin-top: 50px;
	display:block;
	padding:20px;
	padding-bottom: 80px; /* Extra padding to prevent bottom menu overlap */
}
p {
    margin-top: 1em; /* Adds space above each paragraph */
    margin-bottom: 1em; /* Adds space below each paragraph */
    padding: 0; /* Optional: remove padding if it's not needed */
    line-height: 1.6; /* Adjusts spacing between lines for readability */
}

.full-width-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Button Styling */
.button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    font-size: 16px;
    font-weight: bold;
    color: #990000;
    text-align: center;
    padding-bottom: 10px;
    background-color: #BDD6D5;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
}

.button img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 75%;
    max-height: 75%;
	border-radius: 15px 40px 20px;
	object-fit: cover;
}
input[type="file"] {
    font-size: 18px; /* Increases font size */
    padding: 10px; /* Adds padding for a larger clickable area */
    width: 100%; /* Makes it full-width */
    max-width: 300px; /* Limits width to a reasonable size */
    height: 50px; /* Makes it taller */
    border: 2px solid #ddd; /* Adds a border for better visibility */
    border-radius: 5px; /* Rounds the corners */
    background-color: #f9f9f9; /* Adds a subtle background color */
    cursor: pointer; /* Changes cursor to pointer */
}
@media screen and (max-width: 600px) {
    input[type="file"] {
        font-size: 20px; /* Further increase font size for smaller screens */
        padding: 15px; /* Add more padding for touch-friendly sizing */
    }
}
#cancelButton {
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: #DC3545; /* Red color for cancel */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 10px; /* Space between Upload and Cancel buttons */
}

#cancelButton:hover {
    background-color: #B02A37; /* Darker red on hover */
}
/* Bottom Menu Bar Styling */
.bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #ddd;
    z-index: 1000;
}

.bottom-menu .menu-item {
    flex: 1;
    text-align: center;
    font-size: 16px;
    color: #333;
    text-decoration: none;
    padding: 10px;
}

.bottom-menu .menu-item:hover {
    background-color: #f0f0f0;
}