/* Popup Container */
.bulk-edit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Content Area */
.bulk-edit-popup-content {
    background: #fff;
    border-radius: 3px;
    width: 90%;
    max-width: 680px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    padding: 25px;
}

/* Scrollable Section */
.scrollable-container {
    flex: 1;
    overflow-y: auto;
    margin: 15px 0;
    padding-right: 10px;
}

/* Input Section */
.input-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bulk-edit-popup-content h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 22px;
}

.bulk-edit-popup-content input[type="text"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,.07);
    font-size: 14px;
    background-color: #fff;
    color: #2c3338;
}

.bulk-edit-popup-content input[type="text"]:focus {
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
    outline: none;
}

.title-edit-field {
    margin-bottom: 1.5em;
}

.title-edit-field label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: 500;
}

.title-edit-field input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

/* Buttons */
.button-group {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.button {
    padding: 8px 16px;
    border-radius: 3px;
    cursor: pointer;
}

.button-primary {
    background: #2271b1;
    border-color: #2271b1;
    color: #fff;
}

.button-secondary {
    background: #f6f7f7;
    border-color: #ddd;
    color: #1d2327;
}