.neuven-crp-branch-section {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin: 20px 0;
}

.neuven-crp-branch-section h3 {
    margin: 0 0 10px 0;
    color: #2c5aa0;
}

#branches-container {
    margin: 20px 0;
}

.branch-item {
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 15px;
}

.branch-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.branch-header h4 {
    margin: 0;
    color: #333;
}

.remove-branch {
    background: #dc3545;
    color: white;
    border: none;
    padding: 5px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

.remove-branch:hover {
    background: #c82333;
}

.branch-fields {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.branch-field {
    display: flex;
    flex-direction: column;
}

.branch-field label {
    font-weight: 600;
    margin-bottom: 5px;
    color: #555;
}

.branch-field input,
.branch-field textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.branch-field textarea {
    min-height: 80px;
    resize: vertical;
}

.branch-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

#add-branch-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
}

#add-branch-btn:hover {
    background: #218838;
}

@media (max-width: 768px) {
    .branch-field-row {
        grid-template-columns: 1fr;
    }
}