

#kalkulyator_roi {}
  #container {position:relative;background-color: #fff; border-top: 1px solid #f5f5f5; height: auto;margin-bottom:0px; padding-top:50px;padding-bottom:30px;}
    #container-wrap{max-width:80%;margin:0px auto;position:relative;padding-top: 50px;}
	
        .generator-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }

        @media (max-width: 768px) {
            .generator-container {
                grid-template-columns: 1fr;
            }
        }

        .form-section, .result-section {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .generator-container label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #555;
        }

       .generator-container input, .generator-container select {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e1e5e9;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s ease;
			box-sizing: border-box;
        }

        .generator-container input:focus, .generator-container select:focus {
            outline: none;
            border-color: #667eea;
        }

        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .checkbox-group input {
            width: auto;
        }

        .buttons {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .generator-container button {
            flex: 1;
            padding: 15px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background: #667eea;
            color: white;
        }

        .btn-primary:hover {
            background: #5a6fd8;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: #f8f9fa;
            color: #333;
            border: 2px solid #e1e5e9;
        }

        .btn-secondary:hover {
            background: #e9ecef;
        }

        .result-section h3 {
            margin-bottom: 20px;
            color: #555;
            border-bottom: 2px solid #f0f0f0;
            padding-bottom: 10px;
        }

        .url-display {
            background: #f8f9fa;
            border: 2px solid #e1e5e9;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            word-break: break-all;
            font-family: monospace;
            font-size: 14px;
            line-height: 1.4;
        }

        .url-breakdown {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 20px;
			margin-top:20px;
        }

        .url-breakdown h4 {
            margin-bottom: 15px;
            color: #555;
        }

        .breakdown-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid #e1e5e9;
        }

        .breakdown-item:last-child {
            border-bottom: none;
        }

        .param-name {
            font-weight: 600;
            color: #667eea;
        }

        .param-value {
            color: #666;
        }

        .info-section {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .info-section h3 {
            margin-bottom: 20px;
            color: #555;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .info-card {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #667eea;
        }

        .info-card h4 {
            margin-bottom: 10px;
            color: #555;
        }

        .info-card p {
            color: #666;
            font-size: 14px;
        }

        .hidden {
            display: none;
        }

        .success-message {
            background: #d4edda;
            color: #155724;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            text-align: center;
            border: 1px solid #c3e6cb;
        }