.itp-container {
    max-width: 700px;
    margin: auto;
    padding: 20px;
    background-color: #045CB4;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.itp-title {
    text-align: center;
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.itp-label {
    font-weight: 600;
    display: block;
    margin-top: 15px;
    color: #444;
}

input[type="file"],
input[type="number"],
input[type="text"],
select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

#itp-preview.grid-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

.itp-image-wrapper {
    position: relative;
    border: 2px solid #c5d3e0;
    background: #fff;
    padding: 8px;
    text-align: center;
    cursor: grab;
    width: 130px;
    border-radius: 8px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}

.itp-thumb {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
    border-radius: 5px;
}

.remove-btn, .rotate-btn {
    position: absolute;
    background: #444;
    color: #fff;
    border: none;
    border-radius: 50%;
    padding: 3px 6px;
    cursor: pointer;
    font-size: 12px;
}

.remove-btn {
    top: 3px;
    right: 3px;
    background: red;
}

.rotate-btn {
    bottom: 3px;
    right: 3px;
    background: green;
}

.sortable-ghost {
    opacity: 0.4;
    border: 2px dashed #888;
}

.itp-image-name {
    font-size: 12px;
    margin-top: 5px;
    word-wrap: break-word;
    color: #333;
    background-color: #e0e0e0;
    padding: 3px;
    border-radius: 3px;
}

.itp-image-index {
    font-size: 14px;
    font-weight: bold;
    background-color: #0073aa;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: inline-block;
    text-align: center;
    line-height: 22px;
    margin-bottom: 5px;
}

#itp-add-more,
#itp-generate-pdf {
    background-color: #0073aa;
    color: #fff;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 20px;
    text-align: center;
    transition: background 0.3s ease;
}

#itp-add-more:hover,
#itp-generate-pdf:hover {
    background-color: #005a8d;
}
