.dark-bg {
    background: #1f2937!important;
    color: #fff!important;
}
.no-border {
    border: none!important;
}

/* KARTIČKY START */
.card {
    border-radius: 12px;
    margin-bottom: 0.2rem;
    padding: 0.5rem;
    background-color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 8px solid transparent;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.card .card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card .card-text {
    font-size: 0.875rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.card .text-muted {
    font-size: 0.75rem;
    color: #6c757d;
}

.card .pinned-icon {
    color: #f39c12;
    font-size: 1.25rem;
}

.card-body {
    padding: 1rem;
}

.card[data-status="reported"] {
    border-left-color: #e74c3c;
}

.card[data-status="progress"] {
    border-left-color: #f39c12;
}

.card[data-status="finished"] {
    border-left-color: #2ecc71;
}

.card .card-body .priority-icon {
    font-size: 1.5rem;
    position: absolute;
    top: 10px;
    right: 10px;
}

.container .row:nth-child(1) {
    margin-bottom: 20px;
  }
  
  .container .row:nth-child(1) button {
    min-width: 200px;
  }
  
  @media (max-width: 768px) {
    .container .row:nth-child(1) button {
      width: 100%; /* Tlačítka budou přes celou šířku */
    }
  }  
/* KARTIČKY END */