/* Custom styles for Chéo Đơn - Nền tảng Trao đổi Đơn hàng */

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
}

.trust-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85em;
    font-weight: bold;
}

.trust-badge.bronze {
    background-color: #cd7f32;
    color: white;
}

.trust-badge.silver {
    background-color: #c0c0c0;
    color: white;
}

.trust-badge.gold {
    background-color: #ffd700;
    color: #333;
}

.status-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85em;
}

.status-open {
    background-color: #28a745;
    color: white;
}

.status-paused {
    background-color: #ffc107;
    color: #333;
}

.status-closed {
    background-color: #6c757d;
    color: white;
}

.match-timeline {
    position: relative;
    padding-left: 30px;
}

.match-timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #dee2e6;
}

.match-timeline-item {
    position: relative;
    margin-bottom: 20px;
}

.match-timeline-item::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #007bff;
    border: 2px solid white;
    box-shadow: 0 0 0 2px #007bff;
}

.card-link {
    text-decoration: none;
    color: inherit;
}

.card-link:hover {
    text-decoration: none;
}

.card-link:hover .card {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transform: translateY(-2px);
    transition: all 0.3s;
}

.upload-preview {
    max-width: 300px;
    max-height: 300px;
    margin-top: 10px;
}

.table-responsive {
    overflow-x: auto;
}

