.generator-promtov {}

	.generator-promtov #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 {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            overflow: hidden;
        }

        .header {
            background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
            color: white;
            padding: 30px;
            text-align: center;
        }

        .header h1 {
            font-size: 2.2em;
            margin-bottom: 10px;
        }

        .header p {
            opacity: 0.9;
            font-size: 1.1em;
        }

        .content {
            display: flex;
            min-height: 500px;
        }

        @media (max-width: 768px) {
            .content {
                flex-direction: column;
            }
        }

        .controls {
            flex: 1;
            padding: 25px;
            background: #f8f9fa;
            border-right: 1px solid #e9ecef;
        }

        .result {
            flex: 1;
            padding: 25px;
            display: flex;
            flex-direction: column;
        }

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

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

		.generator-promtov .container select, 
		.generator-promtov .container input, 
		.generator-promtov .container textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            font-size: 14px;
            transition: all 0.3s ease;
			box-sizing: border-box;
        }

		.generator-promtov .container select:focus, 
		.generator-promtov .container input:focus, 
		.generator-promtov .container textarea:focus {
            outline: none;
            border-color: #3498db;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
        }

        .generator-promtov .container textarea {
            resize: vertical;
            min-height: 80px;
        }

        .role-container {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .role-select {
            flex: 2;
        }

        .role-custom {
            flex: 3;
        }

        .custom-role-input {
            display: none;
            margin-top: 10px;
        }

        .custom-role-input.show {
            display: block;
        }

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

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

        .generate-btn {
            background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
            color: white;
        }

        .generate-btn:hover {
            background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
        }

        .copy-btn {
            background: linear-gradient(135deg, #27ae60 0%, #219a52 100%);
            color: white;
        }

        .copy-btn:hover {
            background: linear-gradient(135deg, #219a52 0%, #27ae60 100%);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
        }

        .reset-btn {
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            color: white;
        }

        .reset-btn:hover {
            background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
        }

        .prompt-output {
            flex: 1;
            background: #f8f9fa;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            padding: 20px;
            white-space: pre-wrap;
            word-wrap: break-word;
            font-family: 'Courier New', monospace;
            line-height: 1.5;
            overflow-y: auto;
            margin-bottom: 20px;
        }

        .template-item {
            background: white;
            border: 1px solid #e9ecef;
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .template-item:hover {
            border-color: #3498db;
            transform: translateX(5px);
        }

        .template-title {
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 5px;
        }

        .template-desc {
            font-size: 0.9em;
            color: #7f8c8d;
        }

        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background: #27ae60;
            color: white;
            padding: 15px 25px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transform: translateX(150%);
            transition: transform 0.3s ease;
            z-index: 1000;
        }

        .notification.show {
            transform: translateX(0);
        }

        .section-title {
            font-size: 1.2em;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #3498db;
        }

        .custom-role-btn {
            background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
            color: white;
            padding: 8px 15px;
            border: none;
            border-radius: 6px;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-left: 10px;
        }

        .custom-role-btn:hover {
            background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
            transform: translateY(-1px);
        }