﻿body {
}

/* Styly pro výpis dražeb */
.drazbaitem {
    margin-bottom: 30px;
}

.drazba-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.drazba-card:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
    border-color: #ccc;
}

/* Nadpis */
.drazba-card .title {
    padding: 15px;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.drazba-card .title h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: #333;
}

.drazba-card .title a {
    text-decoration: none;
    color: inherit;
}

.drazba-card .title a:hover h4 {
    color: #0056b3;
}

/* Obrázek - čtvercový náhled */
.drazba-card .image {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Vytvoří čtverec (poměr stran 1:1) */
    height: 0 !important; /* Přepíše případné styly z javascriptu (matchHeight) */
    overflow: hidden;
    border-bottom: 1px solid #eee;
}

.drazba-card .image a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

    .drazba-card .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
        display: block;
        transform: scale(1.05);
    }

.drazba-card:hover .image img {
    transform: scale(1.3);
}

/* Datum */
.drazba-card .date {
    padding: 15px 15px 5px;
    font-size: 13px;
    color: #777;
    text-align: center;
}

/* Ceny */
.drazba-card .cena {
    padding: 5px 15px;
    font-size: 14px;
    color: #555;
    text-align: center;
}

.drazba-card .cena:last-child {
    padding-bottom: 20px;
}

.drazba-card .cena p {
    margin: 0;
    font-size: 11px;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 1px;
}

.drazba-card .cena span {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #B0008E; /* Červená pro cenu */
    margin-top: 2px;
}

.drazba-card .cena strong {
    color: #333;
}

.drazbaitem {
    padding-right: 5px !important;
    padding-left: 5px !important;
}
