.footer {
    margin-top: auto;
    padding-top: 20px;
    padding-bottom: 20px; /* Added padding to give profile bar space */
    font-size: 0.9rem;
    color: #aaa;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    align-items: center; /* Vertically align items */
}

/* This selector is now repurposed for the new tool items */
.tool-item {
    padding: 15px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    font-family: 'Eaglercraft Seven', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
}

.tool-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.tool-title {
    font-size: 1.1rem;
    color: #4CAF50;
}

.tool-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #bbb;
    line-height: 1.3;
}

#version-info {
    position: fixed;
    bottom: 15px;
    left: 15px;
    font-size: 1rem;
    font-family: 'Eaglercraft Seven', sans-serif;
    z-index: 5; /* Keep it above the background but below other UI */
}