#cotizador-wrapper { background: #f9f9f9; padding: 25px; border-radius: 8px; border: 1px solid #ddd; max-width: 900px; margin: 0 auto; font-family: Arial, sans-serif; }
.cot-header { display: flex; justify-content: space-between; align-items: center; background: #fff; padding: 10px 15px; border-radius: 6px; margin-bottom: 20px; border: 1px solid #eee; }
.cot-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 15px; }
.cot-field label { display: block; font-weight: bold; margin-bottom: 5px; }
.cot-field input { width: 100%; padding: 8px; border: 1px solid #ccc; border-radius: 4px; }
.cot-table { width: 100%; border-collapse: collapse; margin-top: 15px; background: #fff; }
.cot-table th, .cot-table td { border: 1px solid #ddd; padding: 10px; text-align: left; }
.cot-table th { background: #f0f0f0; }
.cot-table input { width: 100%; padding: 6px; border: 1px solid #ccc; border-radius: 4px; }
.cot-totales-box { text-align: right; margin-top: 20px; background: #fff; padding: 15px; border-radius: 6px; border: 1px solid #eee; }
.cot-btn { padding: 10px 18px; border: none; border-radius: 4px; cursor: pointer; font-weight: bold; }
.btn-primary { background: #0073aa; color: white; }
.btn-secondary { background: #444; color: white; }
.btn-warning { background: #e67e22; color: white; }
.btn-outline { background: transparent; border: 1px solid #0073aa; color: #0073aa; }
.cot-actions { margin-bottom: 20px; display: flex; gap: 10px; }
.cot-footer-actions { margin-top: 20px; display: flex; gap: 10px; }
.cot-modal { position: fixed; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.5); display:flex; justify-content:center; align-items:center; z-index: 9999; }
.cot-modal-content { background: #fff; padding: 25px; border-radius: 8px; width: 90%; max-width: 700px; max-height: 80vh; overflow-y: auto; position: relative; }
.cot-modal-close { position: absolute; top: 10px; right: 15px; font-size: 24px; cursor: pointer; }
.cotizador-login-box { max-width: 400px; margin: 0 auto; padding: 25px; background: #fff; border: 1px solid #ccc; border-radius: 8px; }