.copyable {
    cursor: pointer;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu{
    display: none;
    list-style: none;
    margin: 0;
    padding: 8px 0;
    background: #F8F5FF; /* Brand Container color */
    border: 1px solid #D8CFF0; /* Brand Subtle Border */
    position: absolute;
    top: 24px;
    left: 0;
    z-index: 1000;
    width: 220px;
    box-shadow: 0 4px 12px rgba(151, 91, 229, 0.12); /* Purple-tinted shadow */
    border-radius: 8px;
    max-height: 400px;
    overflow-y: auto;
}

.settings-item {
    text-decoration: none;
    color: #5F6EEA; /* Accent Product Blue */
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
}

.settings-item:hover {
    background: #F2A6E8; /* Accent Magenta Soft */
    color: #1A1429;
}

.settings-icon {
    width: 20px;
    height: auto;
    vertical-align: middle;
}


.form-field-label {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 0.5em;
    display: inline-block;
}

.form-field-sub-label {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 0.5em;
    display: inline-block;
}

li {
    padding: 5px 10px;
}

.folder-item {
    font-size: 1.2em; /* Reduced from 3em to be more standard */
    font-weight: 500;
}

.folder-icon {
    margin-right: 8px;
    color: #975BE5; /* Primary Brand Purple */
}

.folder-forms {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    justify-content: flex-start;
    max-width: 900px;
    margin-top: 30px;
}

.folder-forms-item {
    flex: 1;
    background: #F8F5FF; /* Container color */
    border: 1px solid #D8CFF0; /* Border Subtle */
    padding: 20px;
    border-radius: 12px;
}

/* Table styling within folders */
.gops-admin .wp-list-table {
    border: 1px solid #D8CFF0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(151, 91, 229, 0.05);
}

.gops-admin .wp-list-table thead th {
    background: #F8F5FF;
    color: #1A1429;
    font-weight: 600;
}

.gops-admin .button-link-delete {
    color: #991b1b !important;
    font-weight: 500;
}

.gops-admin .button-link-delete:hover {
    color: #dc2626 !important;
    text-decoration: underline;
}

.gops-admin select[multiple] {
    border: 1px solid #D8CFF0;
    border-radius: 8px;
    padding: 8px;
}

.drag-handle {
    cursor: grab;
}
.drag-handle:active {
    cursor: grabbing;
}

/* Folder reordering styles */
.gf-sortable-folders {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.gf-folder-item {
    font-size: 1.1em;
    padding: 12px 16px;
    margin-bottom: 10px;
    border: 1px solid #D8CFF0; /* Border Subtle */
    border-radius: 12px;
    background: #F8F5FF; /* Container color */
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
}

.gf-folder-item:hover {
    background: #fff;
    border-color: #975BE5;
    box-shadow: 0 4px 12px rgba(151, 91, 229, 0.08);
}

.gf-folder-item a {
    text-decoration: none;
    color: #1A1429; /* Main Text */
    font-weight: 600;
}

.gf-drag-handle {
    cursor: grab;
    color: #8A8699; /* Light Text */
    padding: 5px;
}

.gf-drag-handle:hover {
    color: #975BE5; /* Brand Purple */
    background: rgba(151, 91, 229, 0.1);
}
