/* Style for the table */
table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid black;
    height: 10%;
}

/* Style for table header */
th {
    padding: 10px;
    text-align: center;
    border-bottom: 2px solid #fff;
}

/* Style for table cells */
td {
    padding: 10px;
    border-bottom: 1px solid #fff;
}

/* Style for alternating rows */
tr:nth-child(even) {
    background-color: rgba(183, 182, 182, 0.224);
}

/* Style for selected plan button */
#selectedPlan button {
    cursor: pointer;
    outline: none;
    /* Changed to remove the outline */
    background-color: #e47203;
    color: white;
    /* Added to ensure button text is visible */
    border: none;
    /* Added to remove button border */
    padding: 5px 10px;
    /* Added padding for button */
    border-radius: 5px;
    /* Added border radius for button */
}

/* Style for check and cross icons */
.fas {
    margin-right: 5px;
}




.select-plan-button {
    width: 90px;
    padding: 5px;
    background: #fff;
    color: white;
    border: none;
    border-radius: 5px;
}

.plan-header {
    background: #499202;
    color: white;
}

.feature-available {
    /* Your styles for available features */
}

.highlighted-row {
    background-color: #ffff99;
    /* Example color: yellow */
}

.feature-available {
    /* Your styles for available features */
}

.highlighted-plan {
    background-color: #e47203;
    /* Example color: gold */
}