body {
    font-family: Arial, sans-serif;
}



.pricing-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    height: 99%;
    background: #ffffff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.pricing-card .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #98c18c;
    margin-bottom: 15px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.pricing-card ul li {
    margin-bottom: 10px;
}
/* Custom style for action-button-danger */
.action-button.action-button-danger {
    background-color: #98c18c !important; /* Change background color */
    border-color: #98c18c !important;    /* Change border color */
    color: white !important;              /* Change text color */
}

.action-button.action-button-danger:hover {
    background-color: #86af7a !important; /* Darker shade for hover */
    border-color: #86af7a !important;
}

.btn-toggle {
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1rem;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 25px;
    margin: 0 5px;
 
}

/* General Styles */
.wrapper {
    padding: 20px;
    margin: auto;
    max-width: 1200px;
}

.description-text {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #333;
    margin-bottom: 20px;
}

.action-button {
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.action-button-danger {
    background-color: #dc3545;
    color: #fff;
}

.action-button-danger:hover {
    background-color: #c82333;
}

/* Optional: Custom style enhancements */
.pricing-card {
  border-radius: 12px;
  transition: box-shadow 0.3s ease;
}
.list-unstyled{
    text-align: start;
}
.pricing-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.price {
  font-size: 1.75rem;
  color: #000;
}

@media (max-width: 768px) {
    .pricing-card {
        padding: 15px;
        height: auto; /* Allow height to adjust dynamically */
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for mobile */
        border-radius: 8px; /* Slightly smaller radius */
        margin: 10px; /* Add spacing for better layout on small screens */
    }
}
