.activation-site {
    font-weight: 600;
}

.activation-site a {
    color: #2271b1;
}

.activation-site a:hover {
    color: #135e96;
}

.deactivate-site {
    padding: 4px 12px !important;
}

/* Modal Styles */
.wc-license-manager-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.wc-license-manager-modal-content {
    position: relative;
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    width: 70%;
    max-width: 800px;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.modal-close:hover {
    color: #666;
}

.license-details-table {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
}

.license-details-table th {
    text-align: left;
    padding: 8px;
    width: 30%;
}

.license-details-table td {
    padding: 8px;
}

.license-activations-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.license-activations-list li {
    padding: 10px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.license-activations-list li:last-child {
    border-bottom: none;
}

/* License Status Styles */
.license-status {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.9em;
}

.status-active {
    background-color: #c6e1c6;
    color: #5b841b;
}

.status-inactive {
    background-color: #f1f1f1;
    color: #777;
}

@media screen and (max-width: 782px) {
    .deactivate-site {
        width: 100%;
    }
}
