.court-detail-section {
    padding: 110pt 0pt;
    background-color: #ffffff;
}

.court-image-box {
    border-radius: 16px;
    overflow: hidden;
    height: 480px;
}

.court-display-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.court-info-box {
    padding-left: 20px;
}

.court-badge {
    display: inline-block;
    background-color: #1e3f20;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.court-main-title {
    color: #1e3f20;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
}

.court-price-tag {
    margin-bottom: 25px;
}

.court-price-amount {
    color: #1e3f20;
    font-size: 32px;
    font-weight: bold;
}

.court-price-unit {
    color: #666666;
    font-size: 16px;
}

.court-description {
    color: #444444;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}
.court-specification-box {
    margin-bottom: 35px;
}

.court-spec-heading {
    color: #1e3f20;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.court-spec-table {
    width: 100%;
    border-collapse: collapse;
}

.court-spec-table tr {
    border-bottom: 1px solid #eeeeee;
}

.court-spec-table th, 
.court-spec-table td {
    padding: 12px 0;
    font-size: 15px;
}

.court-spec-table th {
    color: #1e3f20;
    font-weight: 600;
    width: 30%;
    text-align: left;
}

.court-spec-table td {
    color: #555555;
}

/* Glavno dugme za rezervaciju */
.court-action-btn {
    width: 100%;
    max-width: 300px;
    background-color: #a3c6a4;
    color: #1e3f20;
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.court-action-btn:hover {
    background-color: #8db58f;
    transform: translateY(-2px);
}

/* Prilagođavanje za telefone */
@media (max-width: 767.98px) {
    .court-image-box {
        height: 280px;
    }
    .court-info-box {
        padding-left: 0;
        margin-top: 20px;
    }
    .court-main-title {
        font-size: 28px;
    }
    .court-action-btn {
        max-width: 100%;
    }
}

/* style za listu svih terena */
.courts-page-section {
    padding-top: 75pt;
    padding-bottom: 60px;
    background-color: #ffffff;
}

.courts-intro {
    text-align: center;
}

.courts-filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.court-filter-btn {
    color: #1e3f20;
    background-color: transparent;
    border: 1px solid #1e3f20;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.court-filter-btn:hover {
    background-color: #1e3f20;
    color: #ffffff;
}

.court-filter-btn.active {
    background-color: #1e3f20;
    color: #ffffff;
}

.court-card {
    border: 1px solid #eeeeee;
    border-radius: 16px;
    overflow: hidden;
    background-color: #ffffff;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.court-card-img-box {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.court-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.court-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #1e3f20;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.court-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.court-card-title {
    color: #1e3f20;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}

.court-card-location {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 20px;
}

.court-card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.court-card-price {
    color: #1e3f20;
    font-size: 18px;
    font-weight: bold;
}

.court-card-price-unit {
    color: #666666;
    font-size: 13px;
    font-weight: normal;
}

.court-card-btn {
    background-color: #a3c6a4;
    color: #1e3f20;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

.court-card-btn:hover {
    background-color: #8db58f;
    color: #1e3f20;
}

@media (max-width: 768px) {
    .courts-page-section {
        padding-top: 60pt;
    }
}