<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    min-height: 100vh;
    background-color: #f9fafb;
    color: #1f2937;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.header {
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 1.5rem 0;
}

    .header h1 {
        font-size: 1.875rem;
        font-weight: 700;
    }

main {
    padding: 2rem 0;
}

.card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-content {
    padding: 1.5rem;
}

.form-section {
    margin-bottom: 1rem;
}

    .form-section h2 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

.text-gray {
    color: #6b7280;
}

.notice {
    padding: 1rem;
    background-color: #fffbeb;
    border: 1px solid #fbbf24;
    border-radius: 0.375rem;
    margin-bottom: 2rem;
}

    .notice h3 {
        color: #92400e;
        font-weight: 500;
        margin-bottom: 0.5rem;
    }

    .notice p {
        color: #92400e;
        margin-bottom: 1rem;
    }

.notice-text {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.notice a {
    color: #92400e;
    text-decoration: underline;
}

.flex-row {
    display: flex;
    gap: 0.5rem;
}

    .flex-row input {
        flex: 1;
    }

.form-card {
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
}

    .form-card h3 {
        font-size: 1.125rem;
        font-weight: 500;
        margin-bottom: 1rem;
    }

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.span-full {
    grid-column: 1 / -1;
}

.form-group {
    margin-bottom: 0.5rem;
}

    .form-group label {
        display: block;
        font-size: 0.875rem;
        font-weight: 500;
        margin-bottom: 0.5rem;
    }

input, select, textarea {
    width: 100%;
    padding: 0.625rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    background-color: white;
    font-size: 1rem;
}

    input:focus, select:focus, textarea:focus {
        outline: none;
        border-color: #2563eb;
        box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
    }

textarea {
    min-height: 100px;
    resize: vertical;
}

.location-section {
    margin-top: 2rem;
}

.map-section {
    margin-top: 1rem;
}

    .map-section h4 {
        font-size: 0.875rem;
        font-weight: 500;
        margin-bottom: 0.5rem;
    }

    .map-section p {
        font-size: 0.875rem;
        color: #6b7280;
        margin-bottom: 1rem;
    }

#map {
    height: 384px;
    width: 100%;
    border-radius: 0.375rem;
    border: 1px solid #d1d5db;
    margin-bottom: 0.5rem;
}

.map-info {
    font-size: 0.875rem;
    color: #6b7280;
}

.form-actions {
    margin-top: 1.5rem;
}

button, .submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1rem;
    background-color: #2563eb;
    color: white;
    border: none;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

    button:hover, .submit-btn:hover {
        background-color: #1d4ed8;
    }

.icon {
    margin-right: 0.5rem;
}

#productsContainer {
    margin-top: 1rem;
}

.product-item {
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
    background-color: white;
    overflow: hidden;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.product-title {
    font-weight: 500;
}

.remove-btn {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
}

    .remove-btn:hover {
        background-color: rgba(239, 68, 68, 0.1);
    }

.product-content {
    padding: 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .product-content {
        grid-template-columns: 1fr 1fr;
    }
}

.product-detail {
    margin-bottom: 0.5rem;
}

.detail-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.form-submit {
    margin-top: 1rem;
    display: flex;
    justify-content: flex-start;
}

.footer {
    background-color: white;
    border-top: 1px solid #e5e7eb;
    padding: 1.5rem 0;
    margin-top: 3rem;
    text-align: center;
    color: #6b7280;
}



.green {
    background: #66FF99;
}



.ceny {
    /*display: flex;
  justify-content: space-evenly;
  align-items:flex-start;
  */
}

.circle {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    box-shadow: 0px 0px 1px 1px #0000001a;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
}


.master {
    color: black;
    float: right;
}

@media (max-width:900px) {
    .master {
        display: none
    }
}
</pre></body></html>