
        .cont {
			display: flex;
			gap: 10px;
		}
		.cont input {
			flex: 1;
			padding: 10px;
		}
        .container-predaja {
            width: 100%;
            max-width: 900px;
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        .header-predaja {
            background: linear-gradient(90deg, #4b6cb7 0%, #182848 100%);
            color: white;
            padding: 25px 30px;
            text-align: center;
        }
        
        .header-predaja h1 {
            font-size: 28px;
            margin-bottom: 8px;
        }
        
        .header-predaja p {
            opacity: 0.9;
        }
        
        .progress-container {
            display: flex;
            justify-content: space-between;
            padding: 30px 40px 10px;
            position: relative;
        }
        
        .progress-bar {
            position: absolute;
            top: 50%;
            left: 10%;
            right: 10%;
            height: 4px;
            background-color: #e0e0e0;
            transform: translateY(-50%);
            z-index: 1;
        }
        
        .progress {
            position: absolute;
            height: 100%;
            background-color: #4b6cb7;
            width: 0%;
            transition: width 0.5s ease;
            z-index: 2;
        }
        
        .step {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #e0e0e0;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            color: #666;
            position: relative;
            z-index: 3;
            transition: all 0.3s ease;
        }
        
        .step.active {
            background-color: #4b6cb7;
            color: white;
            transform: scale(1.1);
        }
        
        .step.completed {
            background-color: #2ecc71;
            color: white;
        }
        
        .step-label {
            position: absolute;
            bottom: -25px;
            font-size: 14px;
            color: #666;
            white-space: nowrap;
        }
        
        .form-container {
            padding: 30px 40px;
        }
        
        .form-step {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        
        .form-step.active {
            display: block;
        }
        
        @keyframes fadeIn {
            from { opacity: 0.5; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        h2 {
            color: #333;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            color: #555;
            font-weight: 500;
        }
        
        select, input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: border 0.3s;
        }
        
        select:focus, input:focus {
            outline: none;
            border-color: #4b6cb7;
            box-shadow: 0 0 0 2px rgba(75, 108, 183, 0.2);
        }
        
        .dropdown-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin-top: 15px;
        }
        
        @media (min-width: 768px) {
            .dropdown-row.combo-layout {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        .combo-heading {
            grid-column: 1 / -1;
            margin-bottom: 10px;
            color: #4b6cb7;
            font-weight: 600;
            font-size: 16px;
        }
        
        .info-message {
            background-color: #e8f4fd;
            border-left: 4px solid #4b6cb7;
            padding: 15px;
            border-radius: 6px;
            margin-top: 25px;
            font-size: 15px;
            color: #333;
        }
        
        .button-container {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
        }
        
        button {
            padding: 12px 25px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-next, .btn-submit {
            background-color: #4b6cb7;
            color: white;
        }
        
        .btn-next:hover, .btn-submit:hover {
            background-color: #3a5795;
            transform: translateY(-2px);
        }
        
        .btn-prev {
            background-color: #f1f1f1;
            color: #333;
        }
        
        .btn-prev:hover {
            background-color: #e0e0e0;
        }
        
        .btn-step {
            margin: 5px;
            padding: 10px 20px;
            background-color: #f1f1f1;
            color: #333;
            border-radius: 6px;
            font-size: 14px;
        }
        
        .btn-step.active {
            background-color: #4b6cb7;
            color: white;
        }
        
        .buttons-top {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 25px;
        }
        
        .dynamic-fields {
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 10px;
            margin-top: 25px;
            border-left: 4px solid #4b6cb7;
        }
        
        .row {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .col {
            flex: 1;
            min-width: 200px;
        }
        
        .success-message {
            text-align: center;
            padding: 40px;
        }
        
        .success-icon {
            font-size: 60px;
            color: #2ecc71;
            margin-bottom: 20px;
        }
        
        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 15px 25px;
            border-radius: 8px;
            color: white;
            font-weight: 500;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transform: translateX(100px);
            transition: all 0.5s ease;
            z-index: 1000;
        }
        
        .notification.show {
            opacity: 1;
            transform: translateX(0);
        }
        
        .notification.success {
            background-color: #2ecc71;
        }
        
        .notification.error {
            background-color: #e74c3c;
        }
        
        @media (max-width: 768px) {
            .container {
                max-width: 95%;
            }
            
            .form-container {
                padding: 20px;
            }
            
            .progress-container {
                padding: 25px 20px 10px;
            }
            
            .step-label {
                font-size: 12px;
                bottom: -22px;
            }
            
            .row {
                flex-direction: column;
                gap: 0;
            }
        }

	/* FILE UPLOAD STYLES */
.file-upload-section {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.file-upload-section h3 {
    color: #4b6cb7;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.file-upload-section h3 i {
    font-size: 20px;
}

.upload-instructions {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

.upload-row {
    display: flex;
    justify-content: center; /* Center the single upload container */
}

@media (max-width: 768px) {
    .upload-row {
        grid-template-columns: 1fr;
    }
}

.upload-container {
    max-width: 500px;
    width: 100%;
}

.upload-container.active {
    border-color: #4b6cb7;
    background: #f0f7ff;
}

.upload-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.upload-header h4 {
    color: #495057;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.file-requirements {
    font-size: 12px;
    color: #6c757d;
    background: #e9ecef;
    padding: 2px 8px;
    border-radius: 10px;
}

.upload-area {
    height: 120px;
    border: 2px dashed #adb5bd;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.upload-area:hover {
    border-color: #4b6cb7;
    background: #f8f9fa;
}

.upload-placeholder {
    text-align: center;
    color: #6c757d;
}

.upload-placeholder i {
    font-size: 32px;
    color: #adb5bd;
    margin-bottom: 10px;
}

.upload-placeholder p {
    margin: 0;
    font-size: 14px;
}

.upload-subtext {
    font-size: 12px !important;
    color: #868e96 !important;
    margin-top: 5px !important;
}

.file-preview {
    min-height: 80px;
    max-height: 150px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-placeholder {
    text-align: center;
    color: #adb5bd;
    padding: 15px;
}

.preview-placeholder i {
    font-size: 24px;
    margin-bottom: 8px;
}

.preview-placeholder p {
    margin: 0;
    font-size: 13px;
}

.file-preview img {
    max-width: 100%;
    max-height: 140px;
    object-fit: contain;
}

.file-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    margin-bottom: 10px;
}

.file-name {
    color: #495057;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 70%;
}

.file-size {
    color: #6c757d;
    background: #e9ecef;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
}

.btn-remove {
    width: 100%;
    padding: 8px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-remove:hover {
    background: #c0392b;
    transform: translateY(-1px);
}

.upload-status {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.status-item i {
    font-size: 8px;
}

.status-pending {
    color: #f39c12;
}

.status-success {
    color: #2ecc71;
}

.status-error {
    color: #e74c3c;
}

/* Progress bar for upload */
.progress-container {
    width: 100%;
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    margin: 10px 0;
    overflow: hidden;
    display: none;
}

.progress-bar {
    height: 100%;
    background: #4b6cb7;
    width: 0%;
    transition: width 0.3s ease;
}

/* Validation styles */
.validation-error {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.validation-error.show {
    display: block;
}


/* WORD COUNTER STYLES */
.word-counter-label {
    float: right;
    font-size: 12px;
    color: #666;
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: normal;
}

.word-counter-progress {
    margin: 5px 0;
}

.progress-bar-small {
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #4b6cb7;
    width: 0%;
    transition: width 0.3s ease;
}

.character-counter {
    text-align: right;
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

/* Warning styles for limits */
.word-counter-label.warning {
    color: #e74c3c;
    background: #ffebee;
    font-weight: bold;
}

.word-counter-label.limit-reached {
    color: #fff;
    background: #e74c3c;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Textarea specific styles */
textarea {
    /*resize: vertical;*/
    min-height: 120px;
    font-family: inherit;
    line-height: 1.5;
	width: 400px;
}

textarea:focus {
    outline: none;
    border-color: #4b6cb7;
    box-shadow: 0 0 0 2px rgba(75, 108, 183, 0.2);
}





/* MOBILE-FRIENDLY RESPONSIVE STYLES */

/* Container and main layout */
@media (max-width: 768px) {
    .container {
        margin: 10px auto;
        max-width: 95%;
        border-radius: 10px;
    }
    
    .header-predaja {
        padding: 20px 15px;
    }
    
    .header-predaja h1 {
        font-size: 22px;
        line-height: 1.3;
    }
    
    .header-predaja p {
        font-size: 14px;
    }
    
    .progress-container {
        padding: 20px 15px 5px;
    }
    
    .step {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .step-label {
        font-size: 11px;
        bottom: -20px;
        width: 60px;
        text-align: center;
        left: 50%;
        transform: translateX(-50%);
        white-space: normal;
        line-height: 1.2;
    }
    
    .buttons-top {
        margin: 10px 0 15px;
    }
    
    .btn-step {
        padding: 8px 15px;
        font-size: 13px;
        margin: 3px;
    }
    
    .form-container {
        padding: 20px 15px;
    }
    
    h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    h3 {
        font-size: 16px;
        margin: 10px 0;
    }
}

/* Form fields and inputs */
@media (max-width: 768px) {
    .form-group {
        margin-bottom: 15px;
    }
    
    label {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    select, input, textarea {
        padding: 10px 12px;
        font-size: 15px;
    }
    
    /* Date inputs container */
    .cont {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .cont input {
        width: 100% !important;
    }
    
    .row {
        flex-direction: column;
        gap: 0;
    }
    
    .col {
        min-width: 100%;
        width: 100%;
    }
    
    /* Remove unnecessary margins on mobile */
    br + br {
        display: none;
    }
    
    /* Spacing for sections */
    h3 + br + br {
        display: none;
    }
}

/* Dropdown layout adjustments */
@media (max-width: 768px) {
    .dropdown-row.combo-layout {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .combo-heading {
        font-size: 15px;
        margin-bottom: 5px;
    }
    
    .dropdown-row {
        gap: 15px;
    }
}

/* Word counter mobile adjustments */
@media (max-width: 768px) {
    .word-counter-label {
        display: block;
        float: none;
        margin-top: 5px;
        text-align: center;
    }
    
    .word-counter-progress {
        margin: 8px 0 5px;
    }
    
    .character-counter {
        font-size: 11px;
        margin-top: 3px;
    }
    
    textarea {
        min-height: 100px;
        font-size: 15px;
    }
}

/* Button container and buttons */
@media (max-width: 768px) {
    .button-container {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }
    
    .button-container > div:first-child {
        order: 2;
    }
    
    button {
        width: 100%;
        padding: 14px;
        font-size: 16px;
        margin: 0;
    }
    
    .btn-prev, .btn-next, .btn-submit {
        width: 100%;
        justify-content: center;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    /* Make sure buttons don't shrink */
    .btn-prev i, .btn-next i, .btn-submit i {
        font-size: 16px;
    }
}

/* File upload section mobile adjustments */
@media (max-width: 768px) {
    .file-upload-section {
        padding: 15px;
        margin-top: 20px;
    }
    
    .upload-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .upload-container {
        padding: 12px;
    }
    
    .upload-area {
        height: 100px;
    }
    
    .upload-placeholder i {
        font-size: 26px;
    }
    
    .upload-placeholder p {
        font-size: 13px;
    }
    
    .upload-subtext {
        font-size: 11px !important;
    }
    
    .file-preview {
        min-height: 70px;
        max-height: 120px;
    }
    
    .file-info {
        font-size: 12px;
    }
    
    .btn-remove {
        padding: 10px;
        font-size: 13px;
    }
    
    .upload-instructions {
        font-size: 13px;
        line-height: 1.4;
    }
}

/* Dynamic fields and info messages */
@media (max-width: 768px) {
    .dynamic-fields {
        padding: 15px;
        margin-top: 20px;
    }
    
    .info-message {
        padding: 12px;
        font-size: 14px;
        margin-top: 20px;
    }
    
    .info-message i {
        margin-right: 5px;
    }
}

/* Success message mobile adjustments */
@media (max-width: 768px) {
    .success-message {
        padding: 25px 15px;
    }
    
    .success-icon {
        font-size: 50px;
        margin-bottom: 15px;
    }
    
    .success-message h2 {
        font-size: 22px;
    }
    
    .success-message p {
        font-size: 15px;
        line-height: 1.4;
    }
}

/* Additional small screen adjustments */
@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    
    .container {
        margin: 5px auto;
    }
    
    h2 {
        font-size: 18px;
    }
    
    h3 {
        font-size: 15px;
    }
    
    .form-group {
        margin-bottom: 12px;
    }
    
    select, input, textarea {
        padding: 9px 10px;
        font-size: 14px;
    }
    
    /* Adjust date inputs for very small screens */
    .cont input {
        font-size: 14px;
    }
    
    /* Make progress steps smaller */
    .step {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .step-label {
        font-size: 10px;
        bottom: -18px;
        width: 50px;
    }
    
    /* Adjust file upload for small screens */
    .upload-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .file-requirements {
        font-size: 11px;
    }
    
    .status-item {
        font-size: 13px;
    }
}

/* Fix for iOS input zoom */
@media (max-width: 768px) {
    select, input, textarea {
        font-size: 16px !important; /* Prevents iOS zoom on focus */
    }
    
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea {
        -webkit-appearance: none;
        border-radius: 8px;
    }
}

/* Touch-friendly improvements */
@media (max-width: 768px) {
    /* Larger touch targets */
    select, input, textarea, button {
        min-height: 44px; /* Minimum touch target size */
    }
    
    .btn-step {
        min-height: 40px;
        min-width: 80px;
    }
    
    /* Better spacing for stacked elements */
    .row .col + .col {
        margin-top: 15px;
    }
    
    /* Add visual separation between sections */
    h3 {
        padding-top: 10px;
        border-top: 1px solid #eee;
        margin-top: 15px;
    }
    
    /* First h3 in each column shouldn't have top border */
    .col:first-child h3:first-child {
        border-top: none;
        padding-top: 0;
        margin-top: 0;
    }
}

/* Fix for very long dropdown options */
@media (max-width: 768px) {
    select option {
        font-size: 14px;
        padding: 8px;
    }
    
    /* Truncate long option text */
    select {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Notification adjustments */
@media (max-width: 768px) {
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        width: auto;
        padding: 12px 15px;
        font-size: 14px;
    }
}

/* Improve spacing between form sections */
@media (max-width: 768px) {
    /* Add breathing room between sections */
    .form-step > h2 + .form-group {
        margin-top: 10px;
    }
    
    /* Better spacing for date fields */
    .cont {
        background: #f9f9f9;
        padding: 10px;
        border-radius: 8px;
    }
    
    /* Adjust spacing for symbol selection */
    #option1 {
        margin-top: 5px;
    }
}

/* Make dropdowns easier to use on mobile */
@media (max-width: 768px) {
    select {
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 16px;
        padding-right: 40px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
}

/* Ensure text remains readable */
@media (max-width: 768px) {
    * {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    /* Prevent text from being too small */
    .file-name, .file-size, .file-requirements {
        font-size: 11px;
    }
}


/* Success message enhancements */
.reference-info {
    background: #e8f8ef;
    border-left: 4px solid #2ecc71;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: left;
}

.reference-info p {
    margin: 8px 0;
    color: #333;
}

.reference-info strong {
    color: #2ecc71;
    min-width: 120px;
    display: inline-block;
}

#print-form {
    background-color: #34495e;
    margin-top: 10px;
}

#print-form:hover {
    background-color: #2c3e50;
}

/* Loading animation */
.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}