.custom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

header {
    width: 100%;
    padding: 20px;
    color: black;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.flag-container {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
}

.flag-image {
    width: 100px;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.category-container {
    /*display: grid;
    grid-template-columns: repeat(4, 1fr); */
    padding: 20px;
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Optional: Adds spacing between images */
    align-items: center;
}

.category-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    background-color: #f0f0f0;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

.category-tile:hover {
    transform: scale(1.05);
    background-color: #e0e0e0;
}

.category-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 10px;
}

.category-label {
    font-size: 16px;
    font-weight: bold;
    text-transform: capitalize;
    color: #333;
}