.cpen-limit-reached-popup {
    position: fixed;
    z-index: 99999;
    top: 0;
    display: flex;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    background-color: #00000063;
}

.popup-content {
    width: 330px;
    background-color: #FFFFFF;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    border-radius: 17px;
    padding: 38px;
    border: 2px solid orange;
}

.popup-close-button {
    position: absolute;
    top: -15px;
    right: -12px;
}

/* Credits Info Box */
.credits-info {
    background-color: #f5f5f5;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.credits-info p {
    margin: 8px 0;
    font-size: 14px;
    color: #333;
}

.credits-info span {
    font-weight: bold;
    color: #5b7ce8;
    font-size: 16px;
}

/* Subscribe Button */
#subscribe-selected {
    background-color: #5b7ce8;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s;
}

#subscribe-selected:hover {
    background-color: #fff !important;
}

/* Category Table Styling */
.cpen-categories-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: white;
}

.cpen-categories-table thead {
    background-color: #f5f5f5;
}

.cpen-categories-table thead th {
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #e0e0e0;
    font-size: 14px;
}

.cpen-categories-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

.cpen-categories-table tbody tr:hover {
    background-color: #fafafa;
}

.cpen-categories-table tbody td {
    padding: 12px;
    font-size: 14px;
    color: #333;
}

.cpen-category {
    font-weight: 500;
}

.cpen-description {
    color: #888;
}

/* Subcategory Badge */
.subcategory-badge {
    display: inline-block;
    background-color: #e0e0e0;
    color: #666;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    margin-right: 8px;
    text-transform: uppercase;
}

/* Indented subcategory rows */
.subcategory-row td.cpen-category {
    padding-left: 40px;
}

/* Hide checkbox column */
.cpen-select {
    display: none;
}

/* Make table rows clickable and highlight when selected */
.cpen-categories-table tbody tr {
    cursor: pointer;
    transition: background-color 0.2s;
}

.cpen-categories-table tbody tr.selected {
    background-color: #e8f0fe !important;
}

.cpen-categories-table tbody tr.selected td {
    color: #1a73e8;
}

/* Visual checkbox using CSS */
.cpen-category::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 3px;
    margin-right: 10px;
    vertical-align: middle;
    transition: all 0.2s;
}

.cpen-categories-table tbody tr.selected .cpen-category::before {
    background-color: #5b7ce8;
    border-color: #5b7ce8;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
}