/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #83825cc3;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

/* Pricing Table Styles */
.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin: 0 10px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.pricing-table {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.plan {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 10px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
}

.plan:hover {
    transform: translateY(-5px);
}

.plan.recommended {
    border: 2px solid #2196F3;
    position: relative;
}

.plan.recommended::before {
    content: "Recommended";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2196F3;
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
}

.price {
    font-size: 24px;
    font-weight: bold;
    margin: 20px 0;
}

.plan ul {
    list-style-type: none;
    padding: 0;
}

.plan li {
    margin-bottom: 10px;
}

.plan button {
    background-color: #2196F3;
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.plan button:hover {
    background-color: #1976D2;
}

/* Kanban Board Styles */
.kanban-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.kanban-board {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.column {
    background-color: #f1f1f1;
    border-radius: 5px;
    padding: 10px;
    width: 30%;
    min-height: 300px;
}

.column h2 {
    text-align: center;
    margin-bottom: 10px;
}

.card {
    background-color: #477494;
    border-radius: 3px;
    padding: 10px;
    margin-bottom: 10px;
    cursor: move;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.card[data-label="low"] {
    border-left: 5px solid #4CAF50;
}

.card[data-label="medium"] {
    border-left: 5px solid #FFC107;
}

.card[data-label="high"] {
    border-left: 5px solid #F44336;
}

.add-card {
    text-align: center;
    padding: 10px;
    background-color: #75b3ca;
    border-radius: 3px;
    cursor: pointer;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 5px;
    width: 50%;
    max-width: 500px;
}

.modal-content h2 {
    margin-top: 0;
}

.modal-content input,
.modal-content select,
.modal-content textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.modal-content button {
    background-color: #2196F3;
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 3px;
    cursor: pointer;
    margin-right: 10px;
}

.modal-content button:hover {
    background-color: #1976D2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-table,
    .kanban-board {
        flex-direction: column;
    }

    .plan,
    .column {
        width: 100%;
        margin-bottom: 20px;
    }
}