/* Claims System Styles */

.claim-button {
    display: inline-block;
    padding: 8px 16px;
    margin: 5px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.claim-button:not(.claim-pending) {
    background-color: #007cba;
    color: #fff;
    border: 1px solid #007cba;
}

.claim-button:not(.claim-pending):hover {
    background-color: #005a87;
    border-color: #005a87;
    color: #fff;
}

.claim-button.claim-pending {
    background-color: #f0f0f0;
    color: #666;
    border: 1px solid #ddd;
    cursor: not-allowed;
}

.claim-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Admin claims page styles */
.widefat .button {
    margin-right: 5px;
}

.widefat .button:last-child {
    margin-right: 0;
}

/* Meta box styles */
#space-claim-options label {
    display: flex;
    align-items: center;
    font-weight: normal;
}

#space-claim-options input[type="checkbox"] {
    margin-right: 8px;
} 