.custom-tabs-container {
    width:1100px;
    margin: 100px auto;
    max-width:100%;
}

.custom-tabs-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    border-bottom: 1px solid #ddd;
}

.custom-tabs-nav li {
    margin-right: 5px;
}

.custom-tabs-nav li a {
    display: block;
    padding: 10px 15px;
    background: #f1f1f1;
    color: #333;
    text-decoration: none;
    border: 1px solid #ddd;
    border-bottom: none;
    border-radius: 4px 4px 0 0;
}

.custom-tabs-nav li.ui-tabs-active a {
    background: #fff;
    border-bottom: 1px solid #fff;
    margin-bottom: -1px;
    color: #0073aa;
}

.custom-tab-content {
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
}

/* Dropzone styling */
#photo-dropzone {
    border: 2px dashed #0087F7;
    border-radius: 5px;
    background: #f8f8f8;
    min-height: 150px;
    padding: 20px;
    margin-bottom: 20px;
}

#photo-dropzone .dz-message {
    text-align: center;
    font-size: 16px;
    color: #666;
}

#photo-dropzone .dz-message .note {
    font-size: 12px;
    color: #999;
}

/* Photo gallery */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.photo-thumbnail {
    position: relative;
    border: 1px solid #ddd;
    padding: 5px;
    background: #fff;
    border-radius: 3px;
}

.photo-thumbnail img {
    max-width: 100%;
    height: auto;
    display: block;
}

.photo-thumbnail .delete-photo {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 25px;
    height: 25px;
    background: #ff0000;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    line-height: 25px;
    text-align: center;
    padding: 0;
}

.photo-thumbnail .delete-photo:hover {
    background: #cc0000;
}