/**
 * @package     Joomla.Site
 * @subpackage  com_marketvendors
 *
 * @copyright   Copyright (C) 2025 Scorpion Computers & Software. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

/* Markets List Styles */
.com-marketvendors-markets {
    margin-bottom: 2rem;
}

.market-item {
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.market-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.market-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.market-title a {
    color: #0d6efd;
    text-decoration: none;
}

.market-title a:hover {
    text-decoration: underline;
}

.market-date, .market-location {
    margin-bottom: 0.5rem;
}

.market-time {
    margin-left: 0.5rem;
    font-weight: normal;
}

.market-description {
    color: #666;
    margin-bottom: 1rem;
}

.market-registration {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Pagination Styles */
.com-marketvendors-markets__pagination {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.com-marketvendors-markets__counter {
    margin-top: 0.5rem;
    color: #666;
}

@media (max-width: 767px) {
    .market-registration {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
} 