:root{font-family:system-ui,Avenir,Helvetica,Arial,sans-serif;line-height:1.5;font-weight:400;color-scheme:light dark;color:#ffffffde;background-color:#242424;font-synthesis:none;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}a{font-weight:500;color:#646cff;text-decoration:inherit}a:hover{color:#535bf2}body{margin:0;display:flex;place-items:center;min-width:320px;min-height:100vh}h1{font-size:3.2em;line-height:1.1}button{border-radius:8px;border:1px solid transparent;padding:.6em 1.2em;font-size:1em;font-weight:500;font-family:inherit;background-color:#1a1a1a;cursor:pointer;transition:border-color .25s}button:hover{border-color:#646cff}button:focus,button:focus-visible{outline:4px auto -webkit-focus-ring-color}@media (prefers-color-scheme: light){:root{color:#213547;background-color:#fff}a:hover{color:#747bff}button{background-color:#f9f9f9}}*{margin:0;padding:0;box-sizing:border-box}html,body,#root,.App{width:100%;height:100%}body{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background-color:#f5f5f5}.App{min-height:100vh;height:100%;width:100%;display:flex;flex-direction:column}.app-header{background-color:#2c3e50;color:#fff;padding:1.5rem 2rem;box-shadow:0 2px 4px #0000001a;width:100%}.app-header h1{font-size:1.8rem;font-weight:600}.app-main{flex:1;width:100%;margin:0 auto;padding:2rem;max-width:100%}.controls-section{margin-bottom:2rem;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem}.view-toggle{display:flex;gap:.5rem;background:#fff;padding:.5rem;border-radius:8px;box-shadow:0 2px 4px #0000001a}.toggle-btn{padding:.75rem 1.5rem;border:none;background:transparent;color:#555;border-radius:6px;cursor:pointer;font-size:.95rem;font-weight:500;transition:all .2s;display:flex;align-items:center;gap:.5rem}.toggle-btn:hover{background:#f0f0f0}.toggle-btn.active{background:#3498db;color:#fff}.right-controls{display:flex;justify-content:space-between;gap:1rem}.product-list-container{background:#fff;border-radius:8px;box-shadow:0 2px 8px #0000001a;overflow:hidden}.product-table{width:100%;border-collapse:collapse}.product-table thead{background-color:#34495e;color:#fff}.product-table th{padding:1rem;text-align:left;font-weight:600;font-size:.9rem;text-transform:uppercase;letter-spacing:.5px}.product-table tbody tr{border-bottom:1px solid #e0e0e0;transition:background-color .2s}.product-table tbody tr:hover{background-color:#f8f9fa}.product-table tbody tr:last-child{border-bottom:none}.product-table td{padding:1rem;font-size:.9rem;color:#333}.btn-edit{background-color:#3498db;color:#fff;border:none;padding:.5rem 1rem;border-radius:4px;cursor:pointer;font-size:.85rem;transition:background-color .2s}.btn-edit:hover{background-color:#2980b9}.product-cards-container{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;padding:1rem 0}.product-card{background:#fff;border-radius:8px;box-shadow:0 2px 8px #0000001a;transition:transform .2s,box-shadow .2s;display:flex;flex-direction:column;overflow:hidden;width:380px}.product-card:hover{transform:translateY(-4px);box-shadow:0 4px 16px #00000026}.card-header{padding:1.25rem;background:#667eea;color:#fff}.product-name{font-size:1.1rem;font-weight:600;margin-bottom:.5rem}.product-category{display:inline-block;background:#fff3;padding:.25rem .75rem;border-radius:12px;font-size:.75rem;font-weight:500}.card-body{padding:1.25rem;flex-grow:1}.product-price{font-size:1.5rem;font-weight:700;color:#27ae60;margin-bottom:.5rem}.product-stock{font-size:.9rem;color:#666;margin-bottom:1rem}.product-stock span{font-weight:600;color:#27ae60}.product-stock .low-stock{color:#e74c3c}.product-description{font-size:.9rem;color:#555;line-height:1.5}.card-footer{padding:1rem 1.25rem;border-top:1px solid #e0e0e0}.btn-edit-card{width:100%;background-color:#3498db;color:#fff;border:none;padding:.75rem;border-radius:6px;cursor:pointer;font-size:.9rem;font-weight:600;transition:background-color .2s}.btn-edit-card:hover{background-color:#2980b9}.search-container{position:relative;flex-grow:1;max-width:400px}.search-input{width:100%;padding:.75rem 2.5rem .75rem 1rem;border:2px solid #e0e0e0;border-radius:8px;font-size:.95rem;transition:border-color .2s;background:#fff}.search-input:focus{outline:none;border-color:#3498db}.search-icon{position:absolute;right:1rem;top:50%;transform:translateY(-50%);color:#999;pointer-events:none}.form-overlay{position:fixed;inset:0;background:#00000080;display:flex;align-items:center;justify-content:center;z-index:1000;padding:1rem}.product-form-container{background:#fff;border-radius:12px;padding:2rem;max-width:600px;width:100%;max-height:90vh;overflow-y:auto;box-shadow:0 10px 40px #0003}.product-form-container h2{margin-bottom:1.5rem;color:#2c3e50;font-size:1.5rem}.product-form{display:flex;flex-direction:column;gap:1.25rem}.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}.form-group{display:flex;flex-direction:column;gap:.5rem}.form-group label{font-weight:600;color:#333;font-size:.9rem}.form-group input,.form-group textarea{padding:.75rem;border:2px solid #e0e0e0;border-radius:6px;font-size:.95rem;font-family:inherit;transition:border-color .2s}.form-group input:focus,.form-group textarea:focus{outline:none;border-color:#3498db}.form-group input.error,.form-group textarea.error{border-color:#e74c3c}.error-message{color:#e74c3c;font-size:.85rem;margin-top:-.25rem}.form-actions{display:flex;gap:1rem;margin-top:1rem}.btn-cancel,.btn-submit{flex:1;padding:.875rem;border:none;border-radius:6px;font-size:1rem;font-weight:600;cursor:pointer;transition:all .2s}.btn-cancel{background:#95a5a6;color:#fff}.btn-cancel:hover{background:#7f8c8d}.btn-submit{background:#27ae60;color:#fff}.btn-submit:hover{background:#229954}@media (max-width: 600px){.form-row{grid-template-columns:1fr}}.pagination-container{display:flex;justify-content:space-between;align-items:center;margin-top:2rem;padding:1.5rem;background:#fff;border-radius:8px;box-shadow:0 2px 8px #0000001a;flex-wrap:wrap;gap:1rem}.pagination-info{color:#666;font-size:.9rem}.pagination-controls{display:flex;gap:.5rem;align-items:center}.pagination-btn{padding:.5rem .875rem;border:2px solid #e0e0e0;background:#fff;color:#333;border-radius:6px;cursor:pointer;font-size:.9rem;transition:all .2s;font-weight:500}.pagination-btn:hover:not(:disabled){border-color:#3498db;color:#3498db;background:#f0f8ff}.pagination-btn.active{background:#3498db;color:#fff;border-color:#3498db}.pagination-btn:disabled{opacity:.4;cursor:not-allowed}.pagination-ellipsis{padding:.5rem;color:#999}@media (max-width: 600px){.pagination-container{flex-direction:column;text-align:center}.pagination-controls{width:100%;justify-content:center;flex-wrap:wrap}}
