* {
    box-sizing: border-box;
}

.lcp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.lcp-header {
    text-align: center;
    margin-bottom: 40px;
}

.lcp-header h1 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #010101;
}

.lcp-header p {
    font-size: 16px;
    color: #86868B;
}

.lcp-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.lcp-stat-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e5e7;
    transition: all 0.3s ease;
}

.lcp-stat-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.lcp-stat-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.lcp-stat-card h3 {
    font-size: 24px;
    margin: 10px 0;
    color: #010101;
}

.lcp-stat-card p {
    color: #86868B;
    margin: 0;
    font-size: 14px;
}

.lcp-rewards-section {
    margin-bottom: 40px;
}

.lcp-section-title {
    font-size: 22px;
    color: #010101;
    margin-bottom: 20px;
    border-right: 4px solid #0071e3;
    padding-right: 15px;
}

.lcp-rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.lcp-reward-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e5e7;
    transition: all 0.3s ease;
}

.lcp-reward-card:hover:not(.disabled) {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.lcp-reward-card.disabled {
    opacity: 0.6;
}

.lcp-reward-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.lcp-reward-placeholder {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9fb;
    font-size: 48px;
}

.lcp-reward-card h3 {
    padding: 15px 15px 5px;
    margin: 0;
    color: #010101;
    font-size: 16px;
}

.lcp-reward-card p {
    padding: 0 15px;
    color: #86868B;
    font-size: 13px;
    margin: 0;
}

.lcp-reward-footer {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e5e5e7;
}

.lcp-coins {
    color: #0071e3;
    font-weight: 600;
    font-size: 14px;
}

.lcp-button {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lcp-button.lcp-primary {
    background: #0071e3;
    color: white;
}

.lcp-button.lcp-primary:hover {
    background: #0056b3;
}

.lcp-button.lcp-secondary {
    background: #e5e5e7;
    color: #010101;
}

.lcp-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.lcp-redeem-button {
    background: #0071e3;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.lcp-redeem-button:hover:not(:disabled) {
    background: #0056b3;
}

.lcp-redeem-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.lcp-invoices-list {
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.lcp-invoice-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #e5e5e7;
}

.lcp-invoice-item:last-child {
    border-bottom: none;
}

.lcp-invoice-info h3 {
    margin: 0;
    color: #010101;
    font-size: 16px;
}

.lcp-invoice-meta {
    color: #86868B;
    font-size: 13px;
    margin-top: 5px;
}

.lcp-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.lcp-modal-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    position: relative;
    max-width: 600px;
    width: 90%;
}

.lcp-modal-close {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #86868B;
}

.lcp-modal-close:hover {
    color: #010101;
}

.lcp-admin-section {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.lcp-admin-table {
    width: 100%;
    border-collapse: collapse;
}

.lcp-admin-table th {
    background: #f9f9fb;
    padding: 12px;
    text-align: right;
    border-bottom: 2px solid #e5e5e7;
}

.lcp-admin-table td {
    padding: 12px;
    border-bottom: 1px solid #e5e5e7;
}

.lcp-admin-table tr:hover {
    background: #f9f9fb;
}

.lcp-form-group {
    margin-bottom: 15px;
}

.lcp-form-group label {
    display: block;
    margin-bottom: 5px;
    color: #010101;
    font-weight: 600;
}

.lcp-form-group input,
.lcp-form-group textarea,
.lcp-form-group select {
    width: 100%;
    padding: 8px;
    border: 1px solid #e5e5e7;
    border-radius: 4px;
    font-family: inherit;
}

.lcp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.lcp-button-group {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.lcp-pagination-btn {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 4px;
    background: #e5e5e7;
    color: #010101;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.lcp-pagination-btn:hover {
    background: #0071e3;
    color: white;
}

.lcp-pagination-btn.active {
    background: #0071e3;
    color: white;
}
