/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;  	
}

body, html {
    height: 100%;
    display: flex;
  	flex-direction: column; /* Stack the header and container vertically */
    justify-content: center;
    align-items: center;      
    font-family: Arial, sans-serif;    	
  	color: white; 
}

html {
  background: linear-gradient(120deg, rgba(0, 46, 117, 1), rgba(160, 114, 131, 1)); /* Diagonal gradient */
}

.header {
    display: flex;
    align-items: center; /* Center the icon and title vertically */
    justify-content: center; /* Align the content to the left */
    width: 100%; /* Full width */    
    padding: 20px 20px; /* Padding for spacing */
    position: absolute; /* Fix the header at the top */
    top: 0;
    left: 0;
    z-index: 1; /* Ensure header is on top */
    text-align: left; /* Align the text to the left */
}

.header-icon {
    width: 96px; /* Icon size */
    height: 96px;
    margin-right: 10px; /* Space between the icon and the title */
}

.header-title {
    font-size: 28px;
    font-weight: 600;
    color: white;
    line-height: 1.2; /* Adjust line-height for multiple lines */
    margin: 0; /* Remove margin to avoid extra space */
    max-width: 300px; /* Optional: limit title width to prevent very long lines */
}

/* Footer styles */
.footer {
    width: 100%;
    color: white;
    text-align: center;
    padding: 20px;
    position: absolute;
    bottom: 0;
}

.footer p {
    font-size: 14px;
    margin: 0;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;  	
    padding: 20px;
}

.app-icon {
    text-align: center;
}

.icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 0px;
  	filter: invert(100%);
  	cursor: pointer;
}

.label {
    font-size: 14px;
    font-weight: 600;
    color: white;
  	cursor: pointer;
}

.message {
    font-size: 20px;
    font-weight: 800;
  	margin-bottom: 40px;
    color: white;
}

.full-width-image {
    width: 95%; /* Make the image stretch to the full width of the page */
    height: auto; /* Maintain the aspect ratio */  	
}

/* Container for the textarea and button */
.textarea-container {
    position: relative; /* Relative positioning of the textarea container */
}

textarea {
  	width: 95%; 
  	box-sizing: border-box; 
	font-size: 24px;
  	padding: 10px;
  	border: 1px solid #ccc; 
  	border-radius: 4px; 
  	outline: none; 
}

.submit-btn {
    background: transparent; /* Remove button default background */
    border: none; /* Remove default border */
    padding: 0; /* Remove any extra padding */
    cursor: pointer; /* Make it clickable like a button */
  	position: absolute; 
  	right: 10px; /* Align the button to the right */
}

.submit-icon {
    width: 50px; /* Set the size of the icon */
    height: 50px; /* Set the size of the icon */
    object-fit: contain; /* Ensure the icon maintains aspect ratio */
  	filter: invert(100%);
}

.text-above-textarea {    
    padding-bottom: 10px; /* Add space between the text and the textarea */
    font-size: 16px; /* Adjust font size for readability */
    color: white;
    line-height: 1.5; /* Line height to make the text more readable */
    text-align: left; /* Align the text to the left side */
    box-sizing: border-box; /* Ensure padding and margins don't affect the width */
}

.table-container {
	width: 95%;  /* Fill 80% of the screen width */	
  	max-height: 50%; /* Set a max height for scrollable area */
	overflow: auto;  /* Enable scrolling if content overflows */
	border: none;
	background-color: transparent;
  	color: white;
}

table {
	width: 100%;
	border-collapse: collapse;
  	color: white;
}

th, td {
	padding: 7px;
	text-align: left;
	border: none;
}

p {
  margin-bottom: 10px; 
  line-height: 1.3;  
}

a {
  color: #FFFFFF;
  text-decoration: none;
}