body {
    background-color: #f4f6f8;
    color: #333;
    font-family: Arial, sans-serif;
    padding: 20px;
}

.dropdownMenu select {
	border: 0 !important;  
	-webkit-appearance: none;  
	-moz-appearance: none; 
	background: #0088cc url(select-arrow.png) no-repeat 90% center;
	width: 100px; 
	text-indent: 0.01px; 
	text-overflow: ""; 
	color: #FFF;
	border-radius: 15px;
	padding: 10px;
	box-shadow: inset 0 0 5px rgba(000,000,000, 0.5);
	font-size: 16px; /* Added font-size property */
	margin-top: 20px; /* Added margin-bottom property */
	margin-bottom: 10px; /* Added margin-bottom property */
}

/* Input and Button Base Styles */
.address-input, .login-button, .load-button {
    border-radius: 4px;
    padding: 10px;
    margin: 8px 0;
    max-width:100%;
}

.address-input {
    border: 1px solid #ccc;
    box-sizing: border-box;
    display: inline-block;
    max-width:100%;
}

.login-button, .load-button {
    background-color: #4CAF50;
    border: none;
    color: white;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.login-button:hover, .load-button:hover {
    background-color: #45a049;
}

.login-button:disabled, .load-button:disabled {
    background-color: #ccc; /* Consistent disabled style */
}

/* Container Styles */
#accountInput, .account-input {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    padding: 20px;
    max-width: 300px;
    overflow:hidden;
}

#response, #metamaskAccount {
    background-color: #f0f0f0;
    font-family: 'Courier New', Courier, monospace;
    margin-top: 10px;
    padding: 10px;
    white-space: pre-wrap;
    display: none;
    max-width: max-content;
}

.truncated-address, .truncated-hex {
    display: inline-block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: middle;
    text-overflow: ellipsis;
}

/* JSON Formatting Styles */
.json-key { color: #a52a2a; }
.json-value { color: #008000; }
.json-string { color: #00f; }

.manual-entry {
    margin-top: 20px;
}

.opt-in-btn {
    margin-top: 20px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #f0f0f0;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}

footer a {
    margin: 0 10px;
    color: #333;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
