body { font-family: 'Inter', sans-serif; background: #f4f4f4; margin: 0; }
.crm-header { background: #0a0a0a; color: white; padding: 20px 40px; display: flex; justify-content: space-between; align-items: center; }
.crm-header button { background: #C41E3A; color: white; border: none; padding: 10px 20px; border-radius: 5px; cursor: pointer; }

.crm-content { padding: 40px; }
table { width: 100%; background: white; border-collapse: collapse; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
th, td { padding: 15px; text-align: left; border-bottom: 1px solid #eee; }
th { background: #fafafa; font-weight: bold; color: #555; }

.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); }
.modal-content { background: white; width: 400px; margin: 100px auto; padding: 30px; border-radius: 10px; display: flex; flex-direction: column; gap: 15px; }
.modal-content input, .modal-content select { padding: 10px; border: 1px solid #ddd; border-radius: 5px; }
.modal-content button { padding: 10px; background: #C41E3A; color: white; border: none; cursor: pointer; border-radius: 5px; }
.btn-cancel { background: #999 !important; }