.kalkulyator-roi {}

#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;}
	
        .container {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 20px;
        }
        @media (max-width: 768px) {
			#container-wrap {
				max-width: 90%;
			}
            .container {
                grid-template-columns: 1fr;
            }
        }
        .card {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .card h2 {
            margin-top: 0;
            color: #3498db;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
        }
        .form-group {
            margin-bottom: 15px;
        }
       .container  label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
        }
       .container input, .container select {
            width: 100%;
            padding: 8px 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            box-sizing: border-box;
        }
        .input-row {
            display: flex;
            gap: 10px;
            align-items: center;
        }
        .input-row input {
            flex: 1;
        }
        .results {
            background-color: #f8f9fa;
            padding: 15px;
            border-radius: 5px;
            margin-top: 20px;
        }
        .result-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            padding-bottom: 5px;
            border-bottom: 1px dashed #ddd;
        }
        .highlight {
            font-weight: bold;
            color: #2c3e50;
        }
        .highlight .result-item-title {
			max-width:150px
        }
        .positive {
            color: #27ae60;
        }
        .negative {
            color: #e74c3c;
        }
        .explanation {
            font-size: 0.9em;
            color: #7f8c8d;
            margin-top: 5px;
        }
        .section-title {
            background-color: #e8f4fc;
            padding: 8px 12px;
            border-radius: 4px;
            margin: 20px 0 10px 0;
            font-weight: 600;
            color: #2c3e50;
        }
        .ltv-breakdown {
            margin-top: 15px;
            padding: 10px;
            background-color: #f0f8ff;
            border-radius: 5px;
            border-left: 4px solid #3498db;
        }
        .ltv-month {
            display: flex;
            justify-content: space-between;
            margin-bottom: 5px;
            font-size: 0.9em;
        }
        .budget-section {
            background-color: #fff3cd;
            border-left: 4px solid #ffc107;
            padding: 10px;
            border-radius: 5px;
            margin-top: 15px;
        }
        .manual-input {
            background-color: #e8f5e8;
            border-left: 4px solid #27ae60;
            padding: 8px;
            margin: 5px 0;
        }