body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

h1 {
    text-align: center;
    color: #333;
    margin: 20px 0;
}

.menu-section, .edit-section, .logout-section {
    text-align: left; /* Align content to the left */
    margin-left: 20px; /* Optional: Add some left margin to move the content away from the edge */
}

.directory-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.column {
    width: 48%;
    margin-bottom: 20px;
}

.directory-entry {
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
    font-size: 14px; /* Smaller font size */
}

.directory-entry:last-child {
    border-bottom: none;
}

.directory-entry p {
    margin: 5px 0;
}

.directory-entry strong {
    color: #333;
}

.buttons {
    text-align: center;
    margin-top: 20px;
}

button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px; /* Smaller font size */
}

button:hover {
    background-color: #45a049;
}

@media print {
    body {
        background-color: white;
    }
    .buttons {
        display: none;
    }
}
