/* 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 Fields */
.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;
}