/* Хедер на средина */
h3.text-center {
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Картички */
.workorder-card {
    margin: 10px;
    padding: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

    .workorder-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }

/* Лева колона: датум и време */
.date-column .date-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px;
    background-color: #f5f5f5;
    border-radius: 8px;
    width: 100%;
}

.date-column .day {
    font-size: 20px;
    font-weight: bold;
}

.date-column .month {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: #555;
}

.date-column .year {
    font-size: 12px;
    color: #777;
}

.date-column .time {
    font-size: 14px;
    margin-top: 5px;
    font-weight: bold;
    color: #007bff;
}

/* Средна колона */
.details-column h3 {
    margin: 0;
}

.docType {
    font-weight: normal;
    font-size: 14px;
    color: #555;
}

/* Стрелка */
.arrow-icon {
    font-size: 24px;
    color: #007bff;
    transition: transform 0.2s, color 0.2s;
}
/**/
.workorder-card:hover .arrow-icon {
    transform: translateX(5px);
    color: #0056b3;
}

/* Картичка за нови налози */
.workorder-card.not-seen {
    color: #007bff;
}




@media (max-width: 768px) {
    li {
        margin: 0px !important;
    }

    .rz-card {
        padding: 0px !important;
        border: none;
    }

    .details-column {
        padding-top: 6px;
        padding-bottom: 6px
    }

    .icon {
        padding: 0px;
    }

    .rz-card.rz-variant-filled {
        box-shadow: none !important;
    }

    .date-column .date-box {
        background-color: transparent;
    }
}
