/* General Page Styling */
html, body {
    justify-content: center;  /*Center the dashboard horizontally */
    align-items: center;  /*Center the dashboard vertically */
}

/* Profile Container Styling */
.gallery-container {
    margin-top: 80px;
    display: flex;
    flex-direction: column; /* Stack sections vertically */
    gap: 20px; /* Space between sections */
    padding: 20px; /* Add padding around the container */
    background-color: #333; /* Dark background for the container */
    border-radius: 10px;
    width:70%;
}
/* Left Section: User Info and Stats */
.gallery-subcontainer {
    background-color: #fff;
    color:  #111;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%; /* Full width of the container */
}
.gallery-nav {
    background-color: #333;
    color: white;
    padding: 10px;
}

.gallery-nav ul {
    list-style-type: none;
    padding: 0;
}

.gallery-nav ul li {
    display: inline;
    margin-right: 20px;
}

.gallery-nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.gallery-nav ul li a:hover {
    text-decoration: underline;
}

.gallery {
    padding: 20px;
}

.images {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.image-item {
    width: 200px;
    height: 200px;
    overflow: hidden;
    border: 1px solid #ccc;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

