Users\HP\OneDrive\Desktop\Pinnacle\css\admin.css
.admin-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.header-stats {
    display: flex;
    gap: 20px;
}

.stat-box {
    background: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stat-label {
    display: block;
    color: #666;
    font-size: 14px;
}

.stat-value {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.trades-container {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 20px;
}

.trades-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.filters select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.trades-list {
    display: grid;
    gap: 15px;
}

.trade-item {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
}

.trade-info {
    display: grid;
    gap: 8px;
}

.trade-actions {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

.btn.approve {
    background: #00c087;
    color: white;
}

.btn.reject {
    background: #f6465d;
    color: white;
}

.btn.cancel {
    background: #666;
    color: white;
}