#grr-mass-pay-form {
    width: 100%;
}

.grr-table-wrapper {
    border-left: 1px solid rgb(182,189,197,0.12);
    border-right: 1px solid rgb(182,189,197,0.12);
    border-radius: 14px;
    overflow: hidden;
    margin: 20px 0 !important;
    width: 100%;
}

.grr-table {
    width: 100%;
    border-collapse: collapse;
    
    background-color: transparent;
    border-radius: 14px;
    font-size: 14px !important;    
}
.grr-table th {
    text-align: left;
    font-weight: bold;
    padding: 20px;
    color: #666;
    background-color: #171923;
    border-bottom: none;
    font-size: 14px !important;   
    vertical-align: middle !important;
}
.grr-table td {
    padding: 20px;
    text-align: left;
    vertical-align: middle;
    border-top: none;
    color: #888;
    font-size: 14px !important;   
    vertical-align: middle !important;
}
.grr-table tr:nth-child(odd) td {
    background-color: #171923;
}
.grr-table tr:nth-child(even) td {
    background-color: #1A202C;
}
.grr-status {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 4px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}
.grr-status-pre_purchased { background-color: #f56e28; }
.grr-status-mining { background-color: #2271b1; }
.grr-status-extended { background-color: #8c5e00; }
.grr-status-paid { background-color: #00a32a; }
.grr-status-expired { background-color: #d63638; }
.grr-pdf-button, .grr-pay-button, .grr-pay-selected, .grr-extend-button, .grr-extend-selected {
    display: inline-block;
    padding: 4px 10px;
    color: white !important;
    text-decoration: none !important;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s;
    border: none;
}
.grr-pdf-button {
    background-color: #2271b1;
    white-space: nowrap;
}



.grr-pdf-button:hover {
    background-color: #135e96;
    color: white !important;
}

.grr-pdf-button:disabled,
.grr-pdf-button:disabled:hover {
    background-color: #494e57 !important;
    color: #8e8e8e !important;
    cursor: not-allowed;
}

.grr-pay-button {
    width: 100%;
}

.grr-pay-button, .grr-pay-selected {
    background-color: #00a32a;
}
.grr-pay-button:hover, .grr-pay-selected:hover {
    background-color: #008a23;
    color: white !important;
}

.grr-extend-selected {
    background-color: #8c5e00;
    color: white !important;
}

.grr-extend-button {
    background-color: #8c5e00;
    width: 100%;
    text-align: center;
    margin-top: 10px;
}
.grr-extend-button:hover {
    background-color: #6d4a00;
}
.grr-price {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
    color: #00a32a;
}

.grr-section {
    margin-bottom: 30px;
    width: 100%;
}

.grr-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #CCC;
    font-weight: 400;
}
.grr-select-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.grr-select-checkbox:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.grr-actions-bar {
    margin-top: 20px;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}
.grr-selection-info {
    display: inline-block;
    color: #888;
}
.grr-pay-selected, .grr-extend-selected {
    padding: 10px 20px;
    font-size: 16px;
}
.grr-pay-selected:disabled, .grr-extend-selected:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.woocommerce-orders-table__cell-order-actions a {
    margin: 0 10px 10px 0 !important;
}

.grr-valid-until-note {
    font-size: 14px;
    color: #666;
}


.spin {
    animation: spin 1.5s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}