.pimcore-input {
    display: inline-block;
    padding: 6px 10px;
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    min-height: 35px;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    width: 100%;
}


#main-container-wrapper, #main-container-wrapper .x-autocontainer-outerCt {
    height: 100%;
}

.perspective-item-wrapper{
    height: 90%;
    display: block;
    overflow: auto;
}

.pimcore-checkmark {
    background: url("/bundles/pimcoreadmin/img/flat-color-icons/checkmark-white.svg") center no-repeat !important;
}

.bottom-separator {
    margin-bottom: 10px;
}

.top-separator {
    margin-top: 10px;
}

.h-separator {
    margin-bottom: 15px;
    margin-top: 5px
}

.bottom-button-container{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
}

.bottom-button {
    background-color: #28a050;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 10px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
}

.bottom-button:hover {
    background-color: #1e7e3e; /* Change color on hover */
}

.bottom-button:active {
    background-color: #14572b; /* Change color on click */
}

.hidden {
    display: none;
}

.text-center {
    text-align: center;
}

.max-width {
    max-width: 100%;
    width: 100%;
}

.container-image-properties {
    width: 64px;
    height: auto;
}

.nav-button {
    background-color: #e5e5e5;
    border: 1px solid #ccc;
    border-radius: 3px;
    color: #333;
    font-size: 14px;
    padding: 8px 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.pagination-button {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 3px; /* Rounded corners */
    color: #333;
    font-size: 14px;
    padding: 8px 16px;
    cursor: pointer;
    transition: background-color 0.3s ease; /* Smooth transition */
    margin: 5px;
    text-align: center;
}

.pagination-button:disabled {
    background-color: #d0d0d0;
    cursor: not-allowed;
}

.pagination-button i {
    margin-right: 5px;
}

.nav-button:hover {
    background-color: #d4d4d4;
    color: #000;
}

.nav-button:disabled {
    background-color: #f0f0f0;
    border-color: #ddd;
    color: #999;
    cursor: not-allowed;
}

.nav-button i {
    margin: 0 8px;
    font-style: normal;
}

.nav-button .icon-left:before {
    content: '◀'; /* Left arrow */
}

.nav-button .icon-right:before {
    content: '▶'; /* Right arrow */
}