.competition-table-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Center the image in its cell */
.competition-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

/* Center the content of the image and actions columns */
.competition-table-container table td {
    vertical-align: middle;
}

.competition-table-container table td:nth-child(2),
.competition-table-container table td:last-child {
    text-align: center;
}

.competition-info h5 {
    font-size: 1.1rem;
    font-weight: bold;
}

.competition-info p {
    font-size: 0.9rem;
    color: #666;
}

/* Center the action buttons */
.competition-table-container table td:last-child .d-flex {
    justify-content: center;
}

.action-btn {
    min-width: 120px;
    transition: all 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin: 0.25rem;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.action-btn i {
    font-size: 1.1em;
}

/* Specific styles for each button */
.btn-primary.action-btn {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-secondary.action-btn {
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-success.action-btn {
    background-color: #28a745;
    border-color: #28a745;
}

.btn-warning.action-btn {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #000;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .action-btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}