/**
 * All of the CSS for your admin-specific functionality should be
 * included in this file.
 */


.pts_options,
.slide_type {
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    gap: 20px;
}

#pt-slider-settings-form  input.button.button-primary {
    margin-top: 10px;
}



.pts_options .options,
.slide_type .options {
    width: 31%;
    align-items: start;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.slider_wrapper .d_opt {

    width: auto;
    flex: 0 0 25%;
}


form#pt-slider-settings-form {
    width: 50%;
}

.slider_wrapper {

    display: none;
}


.is_slide {

    display: block;
}

.slide_type .options {

    width: 48%;
}

.pts_options .options label,
.slide_type .options label {
    font-size: 16px;
    color: black;
    font-weight: 600;
    line-height: 26px;
}

.slider_metaboxes select {
    width: 100%;
}



.featured_inp {

    display: none !important;
}

.slide_shortcode p {
    font-size: 15px !important;
    color: black;
}

.slider_metaboxes .pts_options {
    /* padding: 20px 0 !important; */
    display: none;
}

.slider_display h2 {
    font-size: 20px !important;
    padding: 15px 0px !important;
    font-weight: 500 !important;
}

.display_option {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    padding: 12px 0;
    gap: 30px;
}

.display_option .d_opt {
    line-height: 18px;
    color: black;
    flex: 1;
    display: flex;
    align-items: baseline;
    font-size: 16px;
    font-weight: 600;
}


/* Updated css */


/* Wrapper */
.slider_display,
#slider_controls {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Headings */
.slider_display h2,
#slider_controls h2 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

/* Options Container */
.display_option {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Each Option */
.d_opt {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f9f9f9;
    padding: 10px 14px;
    border-radius: 6px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    cursor: pointer;
}

.d_opt:hover {
    background: #f1faff;
    border-color: #0073aa;
}

/* Checkbox styling */
.d_opt input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* Labels */
.d_opt label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
}

/* Extra Input for Thumbnail */
.featured_inp {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.featured_inp label {
    font-size: 13px;
    color: #555;
}

.featured_inp input[type="text"] {
    padding: 6px 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    width: 200px;
}


/* Wrapper */
.slider_metaboxes {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    margin-top: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    font-family: "Segoe UI", sans-serif;
}

/* Section Groups */
.slide_type,
.pts_options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px !important;
    border: 1px solid #0b67ff;
    border-radius: 6px;
    background: #0b67ff;
}

/* Each Option */
.slider_metaboxes .options {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 200px;
}

/* Labels */
.slider_metaboxes .options label {
    font-weight: 600;
    font-size: 14px;
    color: white;
}

/* Inputs & Selects */
.slider_metaboxes select,
.slider_metaboxes input[type="number"],
.slider_metaboxes input[type="text"] {
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    color: #111827;
    background: #fff;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
    width:100%;
}

.slider_metaboxes select:focus,
.slider_metaboxes input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
    outline: none;
}

/* Custom dropdown arrow */
.slider_metaboxes select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%236b7280' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 36px;
}

/* Responsive */
@media (max-width: 768px) {
    .slider_metaboxes .options {
        flex: 1 1 100%;
    }
}


