/* Setup Wizard Styles */
.wp-core-ui .wizard-header .notice.is-dismissible {
    display: none;
}

.wh-csrotator-wizard {
    max-width: 900px;
    margin: 40px auto;
    background: #fff;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 0;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.wizard-header {
    text-align: center;
    padding: 40px 30px;
    background: -webkit-linear-gradient(315deg, #25D366 0%, #128C7E 100%);
    background: -moz-linear-gradient(315deg, #25D366 0%, #128C7E 100%);
    background: -o-linear-gradient(315deg, #25D366 0%, #128C7E 100%);
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    position: relative;
}

.wizard-header .notice {
    display: none !important;
}

.wizard-logo {
    max-width: 150px;
    margin-bottom: 20px;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: -o-transform 0.3s ease;
    -moz-transition: transform 0.3s ease, -moz-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease, -moz-transform 0.3s ease, -o-transform 0.3s ease;
}

.wizard-logo:hover {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

.wizard-header h1 {
    font-size: 28px;
    font-weight: 600;
    margin: 0;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.wizard-steps {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0;
    padding: 20px 40px;
    position: relative;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.wizard-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 70px;
    right: 70px;
    height: 3px;
    background: #e2e4e7;
    z-index: 1;
}

.wizard-steps .step {
    position: relative;
    z-index: 2;
    text-align: center;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.wizard-steps .step .step-number {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #e2e4e7;
    color: #555;
    font-weight: 600;
    margin: 0 auto 10px;
    position: relative;
    z-index: 2;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.wizard-steps .step.active .step-number {
    background: #25D366;
    color: #fff;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3);
    -moz-box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3);
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3);
}

.wizard-steps .step.completed .step-number {
    background: #128C7E;
    color: #fff;
    -webkit-box-shadow: 0 2px 4px rgba(18, 140, 126, 0.3);
    -moz-box-shadow: 0 2px 4px rgba(18, 140, 126, 0.3);
    box-shadow: 0 2px 4px rgba(18, 140, 126, 0.3);
}

.wizard-steps .step .step-label {
    font-size: 14px;
    color: #555;
    display: block;
}

.wizard-steps .step.active .step-label {
    color: #25D366;
    font-weight: 600;
}

.wizard-steps .step.completed .step-label {
    color: #128C7E;
    font-weight: 600;
}

.wizard-content {
    padding: 40px;
}

.wizard-step-content {
    background: white;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    padding: 0;
}

.wizard-step-content h2 {
    margin-top: 0;
    font-size: 24px;
    color: #23282d;
    margin-bottom: 20px;
    padding-bottom: 15px;
    /* border-bottom: 2px solid #f0f0f0; */
}

.wizard-buttons {
    margin-top: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.wizard-buttons .button {
    min-width: 120px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    padding: 0 20px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.wizard-buttons .button-primary {
    background: #25D366;
    border-color: #25D366;
    -webkit-box-shadow: 0 4px 6px rgba(37, 211, 102, 0.2);
    -moz-box-shadow: 0 4px 6px rgba(37, 211, 102, 0.2);
    box-shadow: 0 4px 6px rgba(37, 211, 102, 0.2);
}

.wizard-buttons .button-primary:hover,
.wizard-buttons .button-primary:focus {
    background: #128C7E;
    border-color: #128C7E;
    -webkit-box-shadow: 0 6px 8px rgba(18, 140, 126, 0.3);
    -moz-box-shadow: 0 6px 8px rgba(18, 140, 126, 0.3);
    box-shadow: 0 6px 8px rgba(18, 140, 126, 0.3);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
}

.wizard-buttons .button:not(.button-primary) {
    color: #555;
    border-color: #ddd;
    background: #f7f7f7;
}

.wizard-buttons .button:not(.button-primary):hover {
    background: #eee;
    border-color: #ccc;
}

/* Form styling */
.wh-csrotator-wizard .form-table {
    margin-top: 20px;
}

.wh-csrotator-wizard .form-table th {
    width: 200px;
    padding: 20px 15px 20px 0;
    vertical-align: top;
    font-weight: 500;
}

.wh-csrotator-wizard .postbox {
    margin-bottom: 30px;
    border: 1px solid #e5e5e5;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    overflow: visible;
    -webkit-transition: -webkit-box-shadow 0.3s ease;
    transition: -webkit-box-shadow 0.3s ease;
    -o-transition: box-shadow 0.3s ease;
    -moz-transition: box-shadow 0.3s ease, -moz-box-shadow 0.3s ease;
    transition: box-shadow 0.3s ease;
    transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease, -moz-box-shadow 0.3s ease;
}

.wh-csrotator-wizard .postbox:hover {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.wh-csrotator-wizard .postbox-header {
    border-bottom: 1px solid #e5e5e5;
    padding: 15px 20px;
    background: #f9f9f9;
}

.wh-csrotator-wizard .postbox-header h2 {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    color: #333;
    font-weight: 600;
}

.wh-csrotator-wizard .inside {
    padding: 20px;
}

/* Work Schedule Repeater */
.wh-repeater-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-bottom: 15px;
    background: #f9f9f9;
    padding: 15px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.wh-repeater-row:hover {
    background: #f5f5f5;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.wh-repeater-col {
    margin-right: 10px;
}

.wh-repeater-col label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.wh-repeater-col.day-col {
    width: 120px;
}

.wh-repeater-col.start-col,
.wh-repeater-col.end-col {
    width: 100px;
}

.wh-repeater-add {
    margin-top: 15px !important;
    background: #f7f7f7;
    border-color: #ddd;
    padding: 5px 15px;
    height: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.wh-repeater-add:hover {
    background: #f0f0f0;
    border-color: #ccc;
}



.wh-repeater-remove {
    padding: 0 !important;
    height: 30px !important;
    width: 30px !important;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    border-radius: 50% !important;
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -moz-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
    -moz-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
    -moz-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    background: #f5f5f5 !important;
    border-color: #ddd !important;
    -webkit-transition: all 0.2s ease !important;
    -o-transition: all 0.2s ease !important;
    -moz-transition: all 0.2s ease !important;
    transition: all 0.2s ease !important;
}

.wh-repeater-remove:hover {
    background: #f44336 !important;
    border-color: #f44336 !important;
    color: white !important;
}

.wh-repeater-remove .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    line-height: 1;
}

/* Switch toggle */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    -o-transition: .4s;
    -moz-transition: .4s;
    transition: .4s;
    -webkit-border-radius: 34px;
    -moz-border-radius: 34px;
    border-radius: 34px;
    -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.switch label:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    -o-transition: .4s;
    -moz-transition: .4s;
    transition: .4s;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.switch input:checked+label {
    background-color: #25D366;
}

.switch input:checked+label:before {
    -webkit-transform: translateX(30px);
    -moz-transform: translateX(30px);
    -ms-transform: translateX(30px);
    -o-transform: translateX(30px);
    transform: translateX(30px);
}

/* Required field indicator */
.required {
    color: #f44336;
    font-size: 16px;
    line-height: 1;
    vertical-align: middle;
    margin-left: 3px;
}

/* Error message */
.error-message {
    color: #f44336;
    font-size: 13px;
    margin-top: 8px;
    font-weight: 500;
    padding: 5px 10px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    display: inline-block;
}

/* Phone input styling */
.iti {
    width: 100%;
}

.iti__flag-container:hover {
    cursor: pointer;
}

.iti__country-list {
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border-color: #ddd;
}

.iti__country.iti__highlight {
    background-color: rgba(37, 211, 102, 0.1);
}

.iti__selected-flag {
    padding: 0 8px 0 12px;
}

input[type="tel"].phone {
    padding-left: 90px !important;
}

/* Input field enhancements */
.wh-csrotator-wizard input[type="text"],
.wh-csrotator-wizard input[type="email"],
.wh-csrotator-wizard input[type="tel"],
.wh-csrotator-wizard input[type="time"],
.wh-csrotator-wizard select,
.wh-csrotator-wizard textarea {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border-color: #ddd;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.07);
    -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.07);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.07);
    padding: 8px 12px;
    min-height: 36px;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.wh-csrotator-wizard input[type="text"]:focus,
.wh-csrotator-wizard input[type="email"]:focus,
.wh-csrotator-wizard input[type="tel"]:focus,
.wh-csrotator-wizard input[type="time"]:focus,
.wh-csrotator-wizard select:focus,
.wh-csrotator-wizard textarea:focus {
    border-color: #25D366;
    -webkit-box-shadow: 0 0 0 1px #25D366;
    -moz-box-shadow: 0 0 0 1px #25D366;
    box-shadow: 0 0 0 1px #25D366;
}

.wh-csrotator-wizard .description {
    color: #666;
    font-style: italic;
    margin-top: 5px;
}

/* Staff overview styling */
.staff-overview .inside,
.link-overview .inside {
    padding: 0;
}

.staff-card {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 20px;
    position: relative;
    background: #f9f9f9;
    -webkit-border-radius: 0 0 8px 8px;
    -moz-border-radius: 0 0 8px 8px;
    border-radius: 0 0 8px 8px;
}

.staff-avatar {
    width: 80px;
    height: 80px;
    background: #25D366;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 20px;
    -webkit-box-shadow: 0 3px 8px rgba(37, 211, 102, 0.2);
    -moz-box-shadow: 0 3px 8px rgba(37, 211, 102, 0.2);
    box-shadow: 0 3px 8px rgba(37, 211, 102, 0.2);
}

.staff-avatar .dashicons {
    font-size: 40px;
    width: 40px;
    height: 40px;
    color: white;
}

.staff-details {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 300px;
}

.staff-details h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
    color: #333;
}

.staff-details p {
    margin: 5px 0;
    font-size: 14px;
}

.staff-details strong {
    display: inline-block;
    width: 100px;
    font-weight: 600;
}

.status-badge {
    display: inline-block;
    padding: 3px 8px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.status-badge.active {
    background-color: rgba(37, 211, 102, 0.15);
    color: #128C7E;
}

.status-badge.inactive {
    background-color: rgba(244, 67, 54, 0.15);
    color: #d32f2f;
}

.schedule-summary {
    margin-top: 8px;
    background: white;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    padding: 10px;
    border: 1px solid #eee;
    max-width: 400px;
}

.schedule-day {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px dashed #eee;
}

.schedule-day:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.schedule-day .day {
    font-weight: 500;
    color: #555;
}

.schedule-day .time {
    color: #666;
}

.staff-actions {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 20px;
    width: 100%;
    gap: 10px;
}

.staff-actions .button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.staff-actions .button .dashicons,
.link-actions .button .dashicons {
    margin-right: 5px;
}

/* Link overview styling */
.link-card {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 20px;
    position: relative;
    background: #f9f9f9;
    -webkit-border-radius: 0 0 8px 8px;
    -moz-border-radius: 0 0 8px 8px;
    border-radius: 0 0 8px 8px;
}

.link-icon {
    width: 80px;
    height: 80px;
    background: #25D366;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 20px;
    -webkit-box-shadow: 0 3px 8px rgba(37, 211, 102, 0.2);
    -moz-box-shadow: 0 3px 8px rgba(37, 211, 102, 0.2);
    box-shadow: 0 3px 8px rgba(37, 211, 102, 0.2);
}

.link-icon .dashicons {
    font-size: 40px;
    width: 40px;
    height: 40px;
    color: white;
}

.link-details {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 300px;
}

.link-details h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
    color: #333;
}

.link-details p {
    margin: 5px 0;
    font-size: 14px;
}

.link-details strong {
    display: inline-block;
    width: 100px;
    font-weight: 600;
}

.link-details h4 {
    margin: 15px 0 5px 0;
    color: #333;
    font-size: 14px;
    font-weight: 600;
}

.link-url {
    margin-top: 15px;
    padding: 10px;
    background: rgba(37, 211, 102, 0.05);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border-left: 3px solid #25D366;
}

.link-url code {
    display: block;
    padding: 5px;
    margin-top: 5px;
    background: white;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    word-break: break-all;
}

.assigned-staff-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.assigned-staff-list li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 5px;
    padding: 5px 10px;
    background: white;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid #eee;
}

.assigned-staff-list li .dashicons {
    margin-right: 8px;
    color: #128C7E;
}

.link-actions {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 20px;
    width: 100%;
    gap: 10px;
}

/* Responsive adjustments */
@media screen and (max-width: 782px) {
    .wh-csrotator-wizard {
        margin: 20px 10px;
    }

    .wizard-header,
    .wizard-steps,
    .wizard-content {
        padding: 20px;
    }

    .staff-avatar {
        margin-bottom: 15px;
    }

    .staff-details {
        width: 100%;
    }

    .wizard-steps {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -moz-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .wizard-steps::before {
        display: none;
    }

    .wizard-steps .step {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 10px;
    }

    .wizard-steps .step .step-number {
        margin: 0 10px 0 0;
    }

    .wh-repeater-row {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .wh-repeater-col {
        margin-bottom: 10px;
        width: 100% !important;
    }

    .wizard-buttons {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .wizard-buttons .button {
        margin-bottom: 10px;
        text-align: center;
    }
}