/* Admin styling: modern with subtle neon glow inspired by user.css */
.wrap {
    font-family: 'Arial', sans-serif;
    background: #fff;
    padding: 20px;
    margin: 20px 20px 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 4px;
}
h1 {
    color: #23282d;
    margin-bottom: 20px;
}
form {
    width: 100%;
    max-width: 800px;
}
#post_type, #field_name, #new_field_name {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none; /* Remove solid border */
    border-radius: 4px; /* Matches user.css */
    box-sizing: border-box;
    font-size: 16px;
    background: linear-gradient(180deg, #fff, #f5f5f5); /* Subtle gradient */
    box-shadow: 0 0 6px rgba(0, 183, 255, 0.5); /* Subtle neon glow contour */
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}
#post_type:hover, #field_name:hover, #new_field_name:hover {
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5); /* Neon glow on hover */
    transform: translateY(-1px); /* Slight lift */
}
#post_type:focus, #field_name:focus, #new_field_name:focus {
    box-shadow: 0 0 8px rgba(0, 255, 136, 0.7); /* Neon focus glow */
    outline: none;
}
#field_name_container {
    margin-top: 20px;
}
label {
    display: block;
    margin: 15px 0 5px;
    font-weight: bold;
}
input[type="submit"] {
    background: linear-gradient(90deg, #0073aa, #00b7ff); /* Gradient inspired by user.css neon */
    border: none; /* Remove solid border */
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 20px 0;
    cursor: pointer;
    border-radius: 4px;
    box-shadow: 0 0 6px rgba(0, 183, 255, 0.5); /* Subtle neon glow */
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}
input[type="submit"]:hover {
    background: linear-gradient(90deg, #005177, #00ff88); /* Neon hover effect */
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5); /* Stronger glow */
    transform: translateY(-1px);
}
input[type="text"] {
    width: 100%;
    max-width: 400px;
}
select {
    background: linear-gradient(180deg, #fff, #f5f5f5); /* Subtle gradient */
    cursor: pointer;
}
@media (max-width: 782px) {
    .wrap {
        margin-right: 10px;
    }
    input[type="text"], select {
        width: 100%;
    }
}
#field-selection-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 20px;
}
.field-list {
    width: calc(50% - 40px);
    border: none; /* Remove solid border */
    padding: 10px;
    height: 300px;
    overflow-y: auto;
    box-sizing: border-box;
    box-shadow: 0 0 6px rgba(0, 183, 255, 0.5); /* Subtle neon glow */
}
.field-list ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.field-list li {
    border: none; /* Remove solid border */
    margin-top: -1px;
    background-color: #f6f6f6;
    padding: 12px;
    text-decoration: none;
    font-size: 18px;
    color: #1a1a1a;
    display: block;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 6px rgba(0, 183, 255, 0.5); /* Subtle neon glow */
}
.field-list li:hover {
    background-color: #e0e0e0;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5); /* Neon glow on hover */
}
.field-list li.selected {
    background: linear-gradient(90deg, #00ff88, #00b7ff); /* Neon gradient */
    color: #fff;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5); /* Stronger neon glow */
}
.arrows {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 20px;
}
.arrow-btn {
    margin: 10px 0;
    padding: 10px 20px;
    font-size: 24px;
    cursor: pointer;
    background: linear-gradient(90deg, #0073aa, #00b7ff); /* Neon gradient */
    color: #fff;
    border: none; /* Remove solid border */
    border-radius: 4px;
    box-shadow: 0 0 6px rgba(0, 183, 255, 0.5); /* Subtle neon glow */
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}
.arrow-btn:hover {
    background: linear-gradient(90deg, #005177, #00ff88); /* Neon hover effect */
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5); /* Stronger glow */
    transform: translateY(-1px);
}
.arrow-btn:focus {
    box-shadow: 0 0 8px rgba(0, 255, 136, 0.7); /* Neon focus glow */
    outline: none;
}