/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */
.k-spp-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}
.k-spp-side-bar-wrapper {
    flex: 0 0 20%;
    max-width: 20%;
}
.k-spp-content-wrapper {
    flex: 0 0 79%;
    max-width: 79%;
}
.kanos-sale-panel-page {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 40px;
}
.k-spp-sb-heading-wrapper, .k-cdp-bic-heading-wrapper {
    padding: 12px;
    color: #fff;
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    background: #004035;
}
.k-spp-sb-content-item-wrapper {
    padding: 12px;
    color: #fff;
    font-size: 14px;
    line-height: 14px;
    text-align: center;
    text-transform: uppercase;
    background: #979797;
    transition: all 0.25s;
    cursor: pointer;
}
.k-spp-sb-content-item-wrapper:hover {
    background: #464646;
}
.k-spp-sb-content-item-wrapper.active {
    background: #464646;
    font-weight: 700;
}
.k-spp-canc-heading-wrapper {
    padding-bottom: 12px;
    text-align: center;
    color: #004035;
    font-size: 28px;
    line-height: 28px;
    font-weight: 700;
    text-transform: uppercase;
}
#kanos-add-new-cust {
    width: 450px
}
.k-spp-kanc-item-submit-wrapper {
    margin-top: 16px;
    text-align: center;
    position: relative;
}
#kanos-add-new-cust {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    justify-content: space-between;
}
.k-spp-canc-form-left-wrapper, .k-spp-canc-form-right-wrapper {
    flex: 0 0 48%;
    max-width: 48%;
}
#kanos-add-new-cust .k-spp-kanc-item-wrapper {
    margin-bottom: 6px;
}

#kanos-add-new-cust label {
    margin-bottom: 5px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

#kanos-add-new-cust input[type="text"],
#kanos-add-new-cust input[type="tel"],
#kanos-add-new-cust input[type="date"],
#kanos-add-new-cust select,
#kanos-add-new-cust textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

#kanos-add-new-cust input[type="text"]:focus,
#kanos-add-new-cust input[type="tel"]:focus,
#kanos-add-new-cust input[type="date"]:focus,
#kanos-add-new-cust select:focus,
#kanos-add-new-cust textarea:focus {
    border-color: #004035;
    outline: none;
}

#kanos-add-new-cust textarea {
    height: 140px;
    resize: vertical;
}

#kanos-add-new-cust .k-spp-submit-button {
    padding: 10px 24px;
    background: #004035;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

#kanos-add-new-cust .k-spp-submit-button:hover {
    background: #005a4a;
}
.k-spp-kanc-checkbox-group {
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.k-spp-kanc-checkbox-label {
    display: flex;
    align-items: center;
}
.k-spp-kanc-checkbox-label input {
    margin-right: 6px;
}
.k-nbs-wrapper {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 10000;
	border-radius: 6px;
	transform: translateX(100%);
	transition: transform 0.25s ease-in-out;
	opacity: 0;
}
.k-nbs-wrapper.show {
	transform: translateX(0);
	opacity: 1;
}
.k-nbs-inner {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	padding: 8px;
	width: 350px
}
.k-nbs-icon-wrapper {
	flex: 0 0 50px;
	max-width: 50px;
	margin-right: 8px;
}
.k-nbs-wrapper.success {
	background: green;
}
.k-nbs-wrapper.warning {
	background: #a08600;
}
.k-nbs-wrapper.fail {
	background: #c00000;
}
.k-nbs-icon-inner {
	display: flex;
	justify-content: center;
	align-items: center;
}
.k-nbs-icon {
	display: none;
}
.k-nbs-wrapper.success .k-nbs-icon-success-wrapper {
	display: block;
}
.k-nbs-wrapper.warning .k-nbs-icon-warning-wrapper {
	display: block;
}
.k-nbs-wrapper.fail .k-nbs-icon-fail-wrapper {
	display: block;
}
.k-nbs-content-wrapper {
	font-size: 18px;
	line-height: 24px;
	color: #fff;
}
#kanos-update-care-cust {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#kanos-update-care-cust .k-spp-kanc-item-wrapper {
    margin-bottom: 15px;
}

#kanos-update-care-cust label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

#kanos-update-care-cust select,
#kanos-update-care-cust input[type="date"],
#kanos-update-care-cust textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

#kanos-update-care-cust select:focus,
#kanos-update-care-cust input[type="date"]:focus,
#kanos-update-care-cust textarea:focus {
    border-color: #005a4a;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 255, 64, 0.25);
}

#kanos-update-care-cust .k-spp-kanc-item-submit-wrapper {
    margin-top: 20px;
    text-align: right;
}

#kanos-update-care-cust .k-spp-cust-care-submit-button {
    padding: 10px 20px;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
}


#kanos-update-care-cust .k-spp-cust-care-submit-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.select2-container--default .select2-selection--single {
    height: 38px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 38px;
    padding-left: 12px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px;
}
.k-spp-content-add-new-cust-wrapper, .k-spp-content-update-log-cust-wrapper, .k-spp-content-update-infor-cust-wrapper {
    display: none;
}
.k-spp-kanc-item-visit-media-uploaded a {
    display: block;
    height: 0;
    padding-top: 90px;
    width: 90px;
    position: relative;
}
.k-spp-kanc-item-visit-media-uploaded img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 80px;
    height: 80px;
}
.k-spp-kanc-item-visit-media-uploaded {
    display: flex;
    gap: 20px
}
.k-spp-kanc-item-visit-media-uploaded-wrapper {
    display: none;
}

#kanos-update-infor-care-cust {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#kanos-update-infor-care-cust .k-spp-kanc-item-wrapper {
    margin-bottom: 15px;
}

#kanos-update-infor-care-cust label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

#kanos-update-infor-care-cust input[type="text"],
#kanos-update-infor-care-cust input[type="tel"],
#kanos-update-infor-care-cust input[type="date"],
#kanos-update-infor-care-cust select,
#kanos-update-infor-care-cust textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

#kanos-update-infor-care-cust input[type="text"]:focus,
#kanos-update-infor-care-cust input[type="tel"]:focus,
#kanos-update-infor-care-cust input[type="date"]:focus,
#kanos-update-infor-care-cust select:focus,
#kanos-update-infor-care-cust textarea:focus {
    outline: none;
    border-color: #2271b1;
}

#kanos-update-infor-care-cust textarea {
    resize: vertical;
    min-height: 80px;
    height: 80px;
}

#kanos-update-infor-care-cust .k-spp-kanc-item-submit-wrapper {
    margin-top: 20px;
}

#kanos-update-infor-care-cust .k-spp-cust-care-submit-button {
    padding: 8px 16px;
    background: #2271b1;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
}

#kanos-update-infor-care-cust .k-spp-cust-care-submit-button:hover {
    background: #135e96;
}

#kanos-update-infor-care-cust .k-spp-cust-care-submit-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}


#kanos-update-infor-care-cust .k-spp-kanc-checkbox-label,
#kanos-update-infor-care-cust .k-spp-kanc-radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
}

#kanos-update-infor-care-cust .k-spp-kanc-checkbox-label input[type="checkbox"],
#kanos-update-infor-care-cust .k-spp-kanc-radio-label input[type="radio"] {
    margin: 0;
}
.k-uic-form-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}
.k-uic-form-col-wrapper {
    flex: 0 0 48%;
    max-width: 48%;
}
#kanos-update-log-care-cust {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    width: 100%;
}

#kanos-update-log-care-cust .k-spp-kanc-item-wrapper {
    margin-bottom: 6px;
}

#kanos-update-log-care-cust .k-spp-kanc-item-wrapper label {
    display: block;
    margin-bottom: 4px;
    font-weight: 500;
}

#kanos-update-log-care-cust .k-spp-kanc-item-wrapper input[type="text"],
#kanos-update-log-care-cust .k-spp-kanc-item-wrapper input[type="date"],
#kanos-update-log-care-cust .k-spp-kanc-item-wrapper select,
#kanos-update-log-care-cust .k-spp-kanc-item-wrapper textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

#kanos-update-log-care-cust .k-spp-kanc-item-wrapper textarea {
    resize: vertical;
    min-height: 100px;
}

#kanos-update-log-care-cust .k-spp-kanc-item-submit-wrapper {
    margin-top: 20px;
}

#kanos-update-log-care-cust .k-spp-cust-care-submit-button {
    padding: 8px 16px;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
}
#kanos-update-log-care-cust .k-spp-cust-care-submit-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}
.k-spp-ccl-cust-list {
    display: flex;
    flex-wrap: wrap;
}
.k-spp-ccl-cust-item-wrapper {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 8px 0;
    border-bottom: 1px solid #464646;
}
.k-spp-ccl-cust-item-inner, .k-spp-ccl-cust-heading-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.k-rate-color-low {
    color: red;
    font-weight: 700;
}
.k-rate-color-medium {
    color: #ba7800;
    font-weight: 700;
}
.k-rate-color-high {
    color: green;
    font-weight: 700;
}
.k-spp-ccl-cust-item-title {
    flex: 0 0 20%;
    max-width: 20%;
}
.k-spp-ccl-cust-item-phone {
    flex: 0 0 15%;
    max-width: 15%;
    text-align: center;
}
.k-spp-ccl-cust-item-category {
    flex: 0 0 10%;
    max-width: 10%;
    text-align: center;
}
.k-spp-ccl-cust-item-last-contact {
    flex: 0 0 10%;
    max-width: 10%;
    text-align: center;
}
.k-spp-ccl-cust-status-cust {
    flex: 0 0 10%;
    max-width: 10%;
    text-align: center;
}
.k-spp-ccl-cust-item-total-rate {
    flex: 0 0 10%;
    max-width: 10%;
    text-align: center;
}
.k-spp-ccl-cust-list .k-spp-ccl-cust-item-total-rate, .k-spp-ccl-cust-list .k-spp-ccl-cust-item-action-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}
.k-spp-ccl-cust-item-action-wrapper {
    flex: 0 0 15%;
    max-width: 15%;
    text-align: center;
}
.k-spp-ccl-cust-item-detail-cust svg {
    width: 18px;
    height: 18px;
}
.k-spp-ccl-cust-item-detail-cust {
    background: #005a4a;
    border-radius: 4px;
    height: 24px;
    width: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.k-spp-ccl-cust-item-total-rate span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    width: 36px;
    background: red;
    border-radius: 4px;
    font-size: 16px;
    line-height: 16px;
    color: #fff;
}
.k-spp-ccl-cust-item-total-rate.k-rate-color-low span {
    background: #d40000;
}
.k-spp-ccl-cust-item-total-rate.k-rate-color-medium span {
    background: #9d9400;
}
.k-spp-ccl-cust-item-total-rate.k-rate-color-high span {
    background: #004035;
}
.k-spp-ccl-cust-status-cust svg {
    height: 24px;
    width: 24px;
}
.k-spp-ccl-cust-heading-wrapper div {
    font-weight: 700 !important;
    font-size: 16px;
    line-height: 16px;
}
.k-spp-ccl-cust-heading-wrapper {
    padding: 24px 0;
}
.kanos-cust-detail-page {
    max-width: 1200px;
    margin: auto;
}
.k-cdp-inner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.k-cdp-content-wrapper {
    flex: 0 0 78%;
    max-width: 78%;
}
.k-cdp-side-bar-wrapper {
    flex: 0 0 20%;
    max-width: 20%;
}
.k-cdp-bic-list-wrapper {
    padding: 12px;
    background: #ececec;
}
.k-cdp-bic-list-item-wrapper {
    color: #000;
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 8px;
}
.k-cdp-basic-infor-cust-wrapper {
    margin-bottom: 12px;
}
.k-cdp-cc-heading-wrapper {
    margin-bottom: 24px;
    text-align: center;
    color: #004035;
    font-size: 28px;
    line-height: 28px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
}
.k-cdp-cc-desc-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.k-cdp-cc-desc-item-wrapper {
    flex: 0 0 31%;
    max-width: 31%;
    margin-bottom: 8px;
}
.k-cdp-cc-visit-media-item a {
    display: block;
    height: 0;
    width: 60px;
    padding-top: 60px;
    position: relative;
}
.k-cdp-cc-visit-media-item img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.k-cdp-cc-visit-media-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.k-cdp-care-cust-wrapper {
    padding: 24px;
    background: #ececec;
    border-radius: 8px;
}
.read-more {
    font-weight: 700;
    cursor: pointer;
}
.k-cdp-ccc-care-log-table th:nth-child(1),
.k-cdp-ccc-care-log-table th:nth-child(2),
.k-cdp-ccc-care-log-table th:nth-child(4),
.k-cdp-ccc-care-log-table td:nth-child(1),
.k-cdp-ccc-care-log-table td:nth-child(2),
.k-cdp-ccc-care-log-table td:nth-child(4) {
    text-align: center;
}
.k-cdp-cc-content-wrapper {
    margin-top: 48px;
}
.k-cdp-cc-total-rate {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    width: 48px;
    border-radius: 4px;
    color: #fff;
    font-size: 24px;
    line-height: 24px;
}
.k-cdp-cc-total-rate-wrapper {
    margin-left: 12px;
}
.k-cdp-cc-total-rate.k-rate-color-low {
    background: #d40000;
}
.k-cdp-cc-total-rate.k-rate-color-medium {
    background: #9d9400;
}
.k-cdp-cc-total-rate.k-rate-color-high {
    background: #004035;
}
.k-spp-ccl-cust-item-edit {
    background: #9d9400;
    margin-left: 4px;
    cursor: pointer;
}
.k-spp-ccl-cust-item-care-update {
    margin-left: 4px;
    cursor: pointer;
}
.k-cdp-ccc-care-log-table th:nth-child(1),
.k-cdp-ccc-care-log-table td:nth-child(1) {
    width: 5%;
}
.k-cdp-ccc-care-log-table th:nth-child(2),
.k-cdp-ccc-care-log-table td:nth-child(2) {
    width: 20%;
}
.k-cdp-ccc-care-log-table th:nth-child(4),
.k-cdp-ccc-care-log-table td:nth-child(4) {
    width: 5%;
}
.k-cdp-ccc-care-log-table th:nth-child(3),
.k-cdp-ccc-care-log-table td:nth-child(3) {
    width: 70%;
}

@media ( max-width: 1025px ) {
    .kanos-sale-panel-page {
        width: 100%;
        padding: 0 12px;
    }
    .k-spp-sb-content-item-wrapper {
        font-size: 12px;
        line-height: 18px;
    }
    .k-spp-ccl-cust-heading-wrapper div {
        font-size: 14px;
        line-height: 19px;
    }
    .k-spp-inner {
        flex-wrap: wrap;
    }
    .k-spp-side-bar-wrapper, .k-spp-content-wrapper {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .k-spp-content-wrapper {
        margin-top: 24px;
    }
    .k-uic-form-wrapper {
        flex-wrap: wrap;
    }
    .k-uic-form-col-wrapper {
        flex: 0 0 100%;
        max-width: 100%;
    }
    #kanos-add-new-cust {
        flex-wrap: wrap;
    }
    .k-spp-canc-form-left-wrapper, .k-spp-canc-form-right-wrapper {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
.k-app-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Admin Control Page Styles */
.kanos-admin-control-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.k-acp-heading-wrapper {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 0;
    background: linear-gradient(135deg, #004035 0%, #005a4a 100%);
    border-radius: 12px;
    color: white;
}

.k-acp-heading-wrapper h1 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    color: white;
}

.k-acp-heading-wrapper p {
    font-size: 16px;
    margin: 0;
    opacity: 0.9;
}

.k-acp-form-wrapper {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.k-acp-form {
    padding: 0;
}

.k-acp-section {
    border-bottom: 1px solid #eee;
}

.k-acp-section:last-child {
    border-bottom: none;
}

.k-acp-section-header {
    background: #f8f9fa;
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.k-acp-section-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #004035;
}

.k-acp-add-repeater-btn {
    background: #004035;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}

.k-acp-add-repeater-btn:hover {
    background: #005a4a;
}

.k-acp-section-content {
    padding: 30px;
}

.k-acp-form-group {
    margin-bottom: 20px;
}

.k-acp-form-group:last-child {
    margin-bottom: 0;
}

.k-acp-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.k-acp-input, .k-acp-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: #fff;
}

.k-acp-input:focus, .k-acp-select:focus {
    outline: none;
    border-color: #004035;
    box-shadow: 0 0 0 3px rgba(0, 64, 53, 0.1);
}

/* Select2 Custom Styling */
.select2-container--default .select2-selection--single {
    height: 48px !important;
    border: 2px solid #e1e5e9 !important;
    border-radius: 8px !important;
    background: #fff !important;
    transition: border-color 0.3s, box-shadow 0.3s !important;
}

.select2-container--default .select2-selection--single:hover {
    border-color: #004035 !important;
}

.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #004035 !important;
    box-shadow: 0 0 0 3px rgba(0, 64, 53, 0.1) !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 44px !important;
    padding-left: 16px !important;
    padding-right: 20px !important;
    color: #333 !important;
    font-size: 14px !important;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px !important;
    right: 12px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #666 transparent transparent transparent !important;
    border-width: 6px 6px 0 6px !important;
    margin-top: -3px !important;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #666 transparent !important;
    border-width: 0 6px 6px 6px !important;
    margin-top: -3px !important;
}

.select2-dropdown {
    border: 2px solid #004035 !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.select2-container--default .select2-results__option {
    padding: 12px 16px !important;
    font-size: 14px !important;
    color: #333 !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #004035 !important;
    color: #fff !important;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #f0f9f7 !important;
    color: #004035 !important;
    font-weight: 600 !important;
}

.select2-search--dropdown .select2-search__field {
    border: 1px solid #e1e5e9 !important;
    border-radius: 6px !important;
    padding: 8px 12px !important;
    font-size: 14px !important;
}

.select2-search--dropdown .select2-search__field:focus {
    border-color: #004035 !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(0, 64, 53, 0.1) !important;
}

.k-acp-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.k-acp-form-row .k-acp-form-group {
    flex: 1;
    margin-bottom: 0;
}


.k-acp-uploaded-images {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.k-acp-image-preview {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e1e5e9;
}

.k-acp-image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.k-acp-remove-image {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Repeater Styles */
.k-acp-repeater-wrapper {
    margin-top: 20px;
}

.k-acp-repeater-item {
    background: #f8f9fa;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}

.k-acp-repeater-item:last-child {
    margin-bottom: 0;
}

.k-acp-repeater-item-header {
    background: #004035;
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.k-acp-repeater-item-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.k-acp-remove-repeater-btn {
    background: #dc3545;
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.k-acp-remove-repeater-btn:hover {
    background: #c82333;
}

.k-acp-repeater-item-content {
    padding: 20px;
}

/* Submit Button */
.k-acp-submit-wrapper {
    padding: 30px;
    text-align: center;
    background: #f8f9fa;
}

.k-acp-submit-btn {
    background: #004035;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    min-width: 200px;
    justify-content: center;
}

.k-acp-submit-btn:hover {
    background: #005a4a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 64, 53, 0.3);
}

.k-acp-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .kanos-admin-control-page {
        padding: 10px;
    }
    
    .k-acp-heading-wrapper {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .k-acp-heading-wrapper h1 {
        font-size: 24px;
    }
    
    .k-acp-section-header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .k-acp-section-content {
        padding: 20px;
    }
    
    .k-acp-form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .k-acp-file-upload-area {
        padding: 30px 15px;
    }
    
    .k-acp-uploaded-images {
        justify-content: center;
    }
    
    .k-acp-repeater-item-content {
        padding: 15px;
    }
    
    .k-acp-submit-wrapper {
        padding: 20px;
    }
    
    .k-acp-submit-btn {
        width: 100%;
        min-width: auto;
    }
}