.elementor-1006 .elementor-element.elementor-element-62323748{--display:flex;}/* Start custom CSS for text-editor, class: .elementor-element-50462f0a */.model-gallery-dashboard {
    font-family: Arial, sans-serif;
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.model-gallery-dashboard h3 {
    font-size: 24px;
    color: #333;
    text-align: center;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    justify-items: center;
}

.image-card {
    position: relative;
    width: 180px;
    height: 180px;
    overflow: hidden;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: transform 0.3s ease;
    background-color: #fff;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-card:hover {
    transform: scale(1.05);
}/* End custom CSS */