diff --git a/cos b/cos
new file mode 100644
index 0000000..1529b99
--- /dev/null
+++ b/cos
@@ -0,0 +1,122 @@
+
+
+
+
+
+ Formularz zamówienia
+
+
+
+
+
+
+
Dodaj zamówienie
+
+
+
+
+
+
Lista zamówień
+
+
+
+ Klient |
+ Data |
+ Kwota |
+
+
+
+
+
+
+
+
+
+
+
+
+* {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+}
+
+body {
+ font-family: Arial, sans-serif;
+ background-color: #f4f4f4;
+}
+
+.container {
+ display: flex;
+ justify-content: space-between;
+ padding: 20px;
+ gap: 20px;
+}
+
+.form-container, .orders-container {
+ background-color: white;
+ padding: 20px;
+ border-radius: 8px;
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
+ width: 48%;
+}
+
+h2 {
+ margin-bottom: 15px;
+}
+
+form {
+ display: flex;
+ flex-direction: column;
+}
+
+form label {
+ margin-bottom: 5px;
+}
+
+form input {
+ margin-bottom: 10px;
+ padding: 8px;
+ border: 1px solid #ccc;
+ border-radius: 4px;
+}
+
+form button {
+ padding: 10px;
+ background-color: #4CAF50;
+ color: white;
+ border: none;
+ border-radius: 4px;
+ cursor: pointer;
+}
+
+form button:hover {
+ background-color: #45a049;
+}
+
+table {
+ width: 100%;
+ border-collapse: collapse;
+ margin-top: 20px;
+}
+
+th, td {
+ padding: 10px;
+ text-align: left;
+ border-bottom: 1px solid #ddd;
+}
+
+th {
+ background-color: #f2f2f2;
+}
\ No newline at end of file