/* Container Box */
.ipc-pro-main-wrapper { clear: both; display: block; max-width: 950px; margin: 20px auto; font-family: 'Inter', sans-serif; }
.ipc-pro-app-surface { background: #ffffff; border-radius: 16px; padding: 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); border: 1px solid #f0f3f7; }

/* Branding */
.ipc-pro-branding-section { text-align: center; margin-bottom: 20px; }
.ipc-pro-title-text { font-size: 18px; font-weight: 700; color: #1e293b; margin: 0; }
.ipc-pro-logo-min { max-height: 40px; margin-bottom: 8px; }

/* Top Inputs */
.ipc-pro-top-bar { display: flex; gap: 10px; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px dashed #e2e8f0; }
.ipc-pro-top-input { flex: 1; padding: 10px; border: 1.5px solid #edf2f7; border-radius: 10px; font-size: 14px; background: #f8fafc; }

/* Transaction Row - The "Attractive Box" */
.ipc-pro-entry-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 15px;
    margin-bottom: 10px;
    transition: all 0.2s;
}
.ipc-pro-entry-box:hover { border-color: #3b82f6; box-shadow: 0 2px 8px rgba(59, 130, 246, 0.05); }

.ipc-pro-input-grid { display: flex; gap: 8px; align-items: flex-end; }
.ipc-pro-item { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.ipc-pro-item label { font-size: 10px; font-weight: 700; color: #94a3b8; text-transform: uppercase; }

.ipc-pro-item input, .ipc-pro-item select {
    padding: 8px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 13px;
    background: #fff;
    width: 100%;
}

/* Remove Button */
.ipc-pro-remove-row { background: #fff1f2; color: #f43f5e; border: none; width: 28px; height: 28px; border-radius: 8px; cursor: pointer; font-size: 18px; line-height: 1; }

/* Action Buttons */
.ipc-pro-button-stack { display: flex; gap: 10px; margin-top: 20px; }
.ipc-btn-light { flex: 1; background: #fff; border: 2px dashed #3b82f6; color: #3b82f6; padding: 12px; border-radius: 10px; font-weight: 600; cursor: pointer; }
.ipc-btn-deep { flex: 2; background: #3b82f6; color: #fff; border: none; padding: 12px; border-radius: 10px; font-weight: 600; cursor: pointer; box-shadow: 0 4px 10px rgba(59, 130, 246, 0.2); }

/* Mobile View: No Scroll, Just Stack */
@media (max-width: 600px) {
    .ipc-pro-input-grid { flex-wrap: wrap; }
    .ipc-pro-item { min-width: 45%; }
    .ipc-pro-item[style*="width: 50px"] { min-width: 22%; }
}