/* ========== PANEL KLIENTA – STYLE ========== */ .client-panel { max-width: 900px; margin: 40px auto; padding: 25px; border-radius: 12px; background: #f5f5f5; font-family: Arial, sans-serif; box-shadow: 0 0 15px rgba(0,0,0,0.1); } .client-panel h2 { text-align: center; margin-bottom: 10px; font-size: 28px; } .client-panel .hello { text-align: center; font-size: 20px; margin-bottom: 25px; } .client-buttons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; } .client-buttons a { display: flex !important; align-items: center; justify-content: center; gap: 8px; padding: 14px; background: #d60000 !important; color: #ffffff !important; border-radius: 10px; text-decoration: none !important; font-weight: bold; border: 1px solid #b40000; transition: 0.2s ease-in-out; } .client-buttons a:hover { background: #a80000 !important; } /* Notatki */ #clientNote { margin-top: 30px; padding: 15px; background: #fff; border-radius: 10px; border: 1px solid #ddd; } #noteInput { width: 100%; padding: 10px; border-radius: 8px; border: 1px solid #bbb; } .save-note { margin-top: 10px; width: 200px; display: block; margin-left: auto; margin-right: auto; padding: 12px 20px; background: #333; color: #fff; border-radius: 8px; cursor: pointer; font-size: 15px; } .save-note:hover { background: #555; }