body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #2c3e50;
    /* Preserve existing h1 color */
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
    margin-top: 0;
}

/* Profile styles */
.login-container {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 400px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 80px;
    /* Approximately 1/4 of the container width (400px / 4 = 100px) */
    height: auto;
}

h2 {
    color: #34495e;
    margin-top: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 0.5rem;
    color: #606770;
}

input[type="email"],
input[type="text"] {
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #dddfe2;
    border-radius: 4px;
    font-size: 1rem;
}

input[type="submit"] {
    background-color: #012b35;
    /* Midnight color */
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

input[type="submit"]:hover {
    background-color: #023e4a;
    /* Slightly lighter shade for hover effect */
}

.error-message {
    color: #c00;
    text-align: center;
    margin-bottom: 1rem;
}

/* Profile styles */

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th,
td {
    padding: 8px 12px;
    /* Reduced padding */
    border: 1px solid #bdc3c7;
    text-align: left;
}

th {
    background-color: #ecf0f1;
    font-weight: bold;
    width: 18%;
    /* Reduced from 35% to about half */
}

.monospace {
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
    white-space: pre-wrap;
    word-break: break-all;
}

.key-field {
    max-height: 250px;
    /* Increased max-height */
    overflow-y: auto;
}

.key-field pre {
    margin: 0;
    white-space: pre-wrap;
    word-break: break-all;
    font-family: inherit;
}