/* Base styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1a1a1a; /* Dark background */
    color: white; /* White text */
}

/* Header styles */
h1 {
    text-align: center;
    margin-top: 20px;
}

/* Logout button styles */
.logout-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #333; /* Dark button background */
    color: white;
    border: 1px solid white;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px; /* Rounded corners */
}

.logout-button:hover {
    background-color: #444; /* Slightly lighter on hover */
}

/* Content styles */
.content {
    max-width: 900px; /* Centered content with a max width */
    margin: 50px auto; /* Centering the content */
    padding: 20px; /* Padding around content */
    border: 2px solid white; /* White border */
    border-radius: 10px; /* Rounded corners */
    background-color: #2a2a2a; /* Slightly lighter background for contrast */
}

/* Hash sections */
.show-hash {
    cursor: pointer;
    text-decoration: underline;
    padding: 10px;
    color: #ffffff; /* Ensuring white text */
}

.hash {
    display: none; /* Hide the hash by default */
    background-color: #333; /* Dark background for the hash section */
    padding: 10px;
    border: 1px solid #fff; /* White border */
    border-radius: 5px; /* Rounded corners */
}

/* Expiration box and status box */
.expiration-box,
.status-box {
    margin-top: 20px;
    padding: 10px;
    border: 1px solid white; /* White border */
    border-radius: 5px; /* Rounded corners */
    background-color: #444; /* Darker background for boxes */
}

/* Responsive design */
@media (max-width: 600px) {
    .content {
        margin: 20px;
        padding: 10px; /* Reduce padding on small devices */
    }

    .logout-button {
        padding: 5px 10px; /* Smaller buttons */
    }
}

/* Footer styles */
footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: white; /* White text */
}

/* Add any additional styles you think are needed below */