/* Gallery Container */
.ppd-gallery-container {
    max-width: 1000px;
    margin: 20px auto;
}

/* Search Form */
.ppd-search-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    padding: 10px;
    background: #f4f4f4;
    border-radius: 8px;
    justify-content: center;
}

.ppd-search-form input,
.ppd-search-form select,
.ppd-search-form button {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.ppd-search-form button {
    background: #007bff;
    color: white;
    cursor: pointer;
}

/* Gallery Grid */
.ppd-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

/* Individual Profile Cards */
.ppd-gallery-card {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s ease-in-out;
}

.ppd-gallery-card:hover {
    transform: translateY(-5px);
}

.ppd-gallery-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}

.ppd-gallery-card h3 {
    margin: 10px 0;
    font-size: 18px;
    color: #222;
}

.ppd-gallery-card p {
    font-size: 14px;
    color: #777;
}
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.dashboard-title {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 12px;
}
