/* Frontend subscription status shortcode */
.instabiz-subscription-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    border: 1px solid #ddd;
}

.instabiz-subscription-table thead th {
    background-color: #f7f7f7;
    font-weight: bold;
    padding: 10px;
    text-align: left;
    border-bottom: 2px solid #ccc;
}

.instabiz-subscription-table tbody td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.instabiz-subscription-table tbody tr:last-child td {
    border-bottom: none;
}

.instabiz-subscription-table .status {
    font-weight: bold;
}

.instabiz-subscription-table .status.cancelled {
    color: red;
}

.instabiz-subscription-table .status.suspended {
    color: orange;
}

.instabiz-subscription-table .cancel-subscription {
    color: red;
    text-decoration: none;
    font-size: 0.9em;
}

/* Frontend cancel subscription popup */
#instabiz-cancel-popup {
    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;
}

.instabiz-popup-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.instabiz-popup-content h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.instabiz-popup-content p {
    margin-bottom: 20px;
}

.instabiz-button {
    padding: 10px 20px;
    margin: 0 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

.instabiz-confirm {
    background-color: #d9534f;
    color: white;
}

.instabiz-cancel {
    background-color: #f0ad4e;
    color: white;
}

.instabiz-subscription-table .action-icons a {
    margin-right: 5px; /* Add spacing between icons */
    text-decoration: none; /* Remove underlines from links */
}

.instabiz-subscription-table .action-icons a i {
    font-size: 1.2em; /* Adjust icon size as needed */
    vertical-align: middle; /* Align icons vertically with text if any */
}

/* Style the specific icons if needed */
.instabiz-subscription-table .activate-subscription i {
    color: green;
}

.instabiz-subscription-table .cancel-subscription i {
    color: red;
}

.instabiz-subscription-table .uncancel-subscription i {
    color: orange; /* Or a suitable color */
}

.instabiz-subscription-table .suspend-subscription i {
    color: orange; /* Or a suitable color */
}

.instabiz-subscription-table .resume-subscription i {
    color: green;
}

.instabiz-subscription-table .delete-subscription i {
    color: darkred;
}

.instabiz-subscription-table {
    margin-top:-28px;
}

.instabiz-subscription-table th {
    background-color: lightblue !important;
    color: black !important;
    padding: 15px !important;
}

.instabiz-subscription-table td {
    padding: 10px !important;
    border-bottom: 1px solid #ccc !important;
}