body {
    background-color: #23272F;
}

/* Remove underline from all links in the codes page */
.image-container a {
    text-decoration: none;
}

.search-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
}

.search-bar input[type="text"] {
    padding: 8px 16px;
    border: 1px solid #D1D5DB;
    border-radius: 20px 0 0 20px;
    outline: none;
    font-size: 1rem;
    background: #181818;
    color: #D1D5DB;
}

.search-bar button {
    padding: 8px 16px;
    border: 1px solid #D1D5DB;
    border-left: none;
    border-radius: 0 20px 20px 0;
    background: #60A5FA;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
}

.search-bar button i {
    font-size: 1.2rem;
    /* Increase icon size */
}

.search-bar button {
    padding: 8px 20px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-box {
    background: #181818;
    border-radius: 12px;
    padding: 24px 16px 16px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 180px;
    margin: 20px auto;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.12);
}

.image-box img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 12px;
}

.image-label {
    color: #D1D5DB;
    font-size: 1.1rem;
    margin: 0;
    text-align: center;
    letter-spacing: 1px;
    text-decoration: none;
    /* Explicitly remove underline */
}

img {
    height: 150px;
    width: 150px;
    border-radius: 50px;
}

.image-container {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .image-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        justify-items: center;
    }

    .image-box {
        width: 90vw;
        max-width: 180px;
        padding: 16px 8px 12px 8px;
        margin: 0 auto;
    }

    .image-box img {
        width: 40px;
        height: 40px;
    }

    .image-label {
        font-size: 1rem;
    }
}