

.agile-scrum-tablitsa {}

	.agile-scrum-tablitsa #promo-wrap { height: auto; padding-top: 5%;}

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

    #container-wrap{margin:0px auto;position:relative;}

        
        .container {
            margin: 0 auto;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
            padding: 20px;
        }
        
        .agile-scrum-tablitsa .container header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eaeaea;
        }

        .controls {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        
        .agile-scrum-tablitsa .container button {
            background-color: #3498db;
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
            font-size: 14px;
        }
        
        .agile-scrum-tablitsa .container button:hover {
            background-color: #2980b9;
        }
        
        .agile-scrum-tablitsa .container button.delete {
            background-color: #e74c3c;
        }
        
        .agile-scrum-tablitsa .container button.delete:hover {
            background-color: #c0392b;
        }
        
        .agile-scrum-tablitsa .container button.save {
            background-color: #2ecc71;
        }
        
        .agile-scrum-tablitsa .container button.save:hover {
            background-color: #27ae60;
        }
        
        .board {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            overflow-x: auto;
            padding-bottom: 10px;
        }
        
        .column {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 15px;
            min-width: 280px;
            min-height: 500px;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
            position: relative;
        }
        
        .column-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eaeaea;
        }
        
        .column-title {
            font-weight: bold;
            color: #2c3e50;
            flex-grow: 1;
        }
        
        .task-count {
            background-color: #3498db;
            color: white;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            margin-left: 10px;
			margin-right: 10px;
        }
        
        .column-actions {
            display: flex;
            gap: 5px;
        }
        
        .column-actions button {
            padding: 4px 8px !important;
			font-size: 11px !important;
            margin-left: 5px;
        }
        
        .task {
            background-color: white;
            border-radius: 6px;
            padding: 12px;
            margin-bottom: 10px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            cursor: move;
            transition: transform 0.2s, box-shadow 0.2s;
            border-left: 4px solid #3498db;
        }
        
        .task:hover {
            transform: translateY(-2px);
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
        }
        
        .task-title {
            font-weight: bold;
            margin-bottom: 5px;
            color: #2c3e50;
        }
        
        .task-description {
            font-size: 14px;
            color: #7f8c8d;
            margin-bottom: 8px;
        }
        
        .task-meta {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: #95a5a6;
        }
        
        .task-priority {
            padding: 3px 6px;
			margin-top: 3px;
			border-radius: 3px;
			font-size: 11px;
			font-weight: bold;
        }
        
        .priority-high {
            background-color: #ffebee;
            color: #e53935;
        }
        
        .priority-medium {
            background-color: #fff3e0;
            color: #f57c00;
        }
        
        .priority-low {
            background-color: #e8f5e9;
            color: #43a047;
        }
        
        .task-actions {
            display: flex;
            justify-content: flex-end;
            margin-top: 8px;
        }
        
        .task-actions button {
            padding: 3px 8px !important;
            font-size: 10px !important;
            margin-top: 15px;
            margin-left: 5px;
        }
        
        
        .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;
        }
        
        .modal-content {
            background-color: white;
            padding: 25px;
            border-radius: 8px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .modal h2 {
            margin-bottom: 15px;
            color: #2c3e50;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        .agile-scrum-tablitsa .container label {
            display: block;
            font-weight: 500;
        }
        
        .agile-scrum-tablitsa .container input, 
		.agile-scrum-tablitsa .container textarea, 
		.agile-scrum-tablitsa .container select {
            width: 100%;
            padding: 8px 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
			box-sizing: border-box;
        }
        
        .agile-scrum-tablitsa .container textarea {
            min-height: 100px;
            resize: vertical;
        }
        
        .modal-buttons {
            display: flex;
            justify-content: flex-end;
            gap: 10px;
            margin-top: 20px;
        }
        
        .file-input {
            display: none;
        }
        
        .file-label {
            display: inline-block;
            background-color: #9b59b6;
            color: white;
            padding: 8px 15px;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .file-label:hover {
            background-color: #8e44ad;
        }
        .status-message-block {position:fixed; bottom:10px; left: 10px; z-index:99;}
		
        .status-message {
            padding: 10px;
            border-radius: 4px;
            margin-bottom: 15px;
            text-align: center;
            display: none;
        }
        
        .status-success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .status-error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        .color-preview {
            width: 30px;
            height: 30px;
            border-radius: 4px;
            border: 1px solid #ddd;
            margin-left: 10px;
        }
        
        .color-input-container {
            display: flex;
            align-items: center;
        }
        
        @media (max-width: 768px) {
            .board {
                flex-direction: column;
            }
            
            .controls {
                flex-direction: column;
            }
            
            .agile-scrum-tablitsa .container button {
                width: 100%;
            }
        }