

:root {
	--strengths-color: #4CAF50;
	--weaknesses-color: #F44336;
	--opportunities-color: #2196F3;
	--threats-color: #FF9800;
}

.generator-swot-analiza {}

	.generator-swot-analiza #promo-wrap { height: auto; padding-top: 5%;}

	#container {position:relative; max-width: 1000px;background-color: #fff;margin: auto; height: auto; margin-top: 30px; margin-bottom:50px; padding-bottom:30px;}

    #container-wrap{max-width:95%;margin:0px auto;position:relative;}

        
        .container {
            max-width: 1200px;
            margin: 0 auto;
			            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
         .description {
            color: #7f8c8d;
            max-width: 800px;
            margin: 0 auto 20px;
        }
        
        .swot-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .swot-section {
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
        }
        
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid;
        }
        
        .section-title {
            font-size: 1.5rem;
            font-weight: bold;
        }
        
        .strengths {
            background-color: rgba(76, 175, 80, 0.1);
            border-top: 5px solid var(--strengths-color);
        }
        
        .weaknesses {
            background-color: rgba(244, 67, 54, 0.1);
            border-top: 5px solid var(--weaknesses-color);
        }
        
        .opportunities {
            background-color: rgba(33, 150, 243, 0.1);
            border-top: 5px solid var(--opportunities-color);
        }
        
        .threats {
            background-color: rgba(255, 152, 0, 0.1);
            border-top: 5px solid var(--threats-color);
        }
        
        .strengths .section-header {
            border-bottom-color: var(--strengths-color);
        }
        
        .weaknesses .section-header {
            border-bottom-color: var(--weaknesses-color);
        }
        
        .opportunities .section-header {
            border-bottom-color: var(--opportunities-color);
        }
        
        .threats .section-header {
            border-bottom-color: var(--threats-color);
        }
        
        .items-list {
            flex-grow: 1;
            min-height: 200px;
        }
        
        .item {
            background-color: white;
            padding: 10px 15px;
            margin-bottom: 10px;
            border-radius: 4px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: transform 0.2s;
        }
        
        .item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .item-text {
            flex-grow: 1;
            margin-right: 10px;
        }
        
        .item-actions button {
            background: none;
            border: none;
            cursor: pointer;
            margin-left: 5px;
            color: #7f8c8d;
            transition: color 0.2s;
        }
        
        .item-actions button:hover {
            color: #2c3e50;
        }
        
        .add-item-form {
            display: flex;
            margin-top: 15px;
        }
        
        .add-item-input {
            flex-grow: 1;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px 0 0 4px;
            outline: none;
        }
        
        .add-item-btn {
            background-color: #3498db;
            color: white;
            border: none;
            padding: 10px 15px;
            borderRadius: 0 4px 4px 0;
            cursor: pointer;
            transition: background-color 0.2s;
        }
        
        .add-item-btn:hover {
            background-color: #2980b9;
        }
        
        .controls {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }
        
        .btn {
            padding: 12px 25px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.2s;
        }
        
        .btn-primary {
            background-color: #3498db;
            color: white;
        }
        
        .btn-primary:hover {
            background-color: #2980b9;
        }
        
        .btn-secondary {
            background-color: #95a5a6;
            color: white;
        }
        
        .btn-secondary:hover {
            background-color: #7f8c8d;
        }
        
        .btn-success {
            background-color: #2ecc71;
            color: white;
        }
        
        .btn-success:hover {
            background-color: #27ae60;
        }

        .export-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }

        .export-modal-content {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            max-width: 500px;
            width: 90%;
        }

        .export-options {
            margin: 20px 0;
        }

        .export-option {
            margin: 10px 0;
        }

        .export-option label {
            margin-left: 8px;
        }

        .modal-buttons {
            display: flex;
            justify-content: flex-end;
            gap: 10px;
            margin-top: 20px;
        }

        @media (max-width: 768px) {
            .swot-grid {
                grid-template-columns: 1fr;
            }
            
            .controls {
                flex-direction: column;
            }
        }