/**
 * 2024 Váš obchod
 *
 * NOTICE OF LICENSE
 *
 * Tento modul je licencovaný pod oficiálnou licenciou PrestaShop
 *
 * @author    Váš Obchod <info@vasobchod.sk>
 * @copyright 2024 Váš Obchod
 * @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 */
.reklamaciaxl-images img {
    max-height: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.reklamaciaxl-images img:hover {
    transform: scale(1.05);
}
.reklamaciaxl-container {
  margin-bottom: 2rem;
}

.reklamaciaxl-list table {
  margin-top: 1rem;
}

.reklamaciaxl-form {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

/* Štýly pre formulár novej reklamácie */
.reklamaciaxl-form label {
  font-weight: bold;
}

.reklamaciaxl-form textarea {
  min-height: 120px;
}

.reklamaciaxl-form .alert {
  margin: 1rem 0;
}

/* Štýly pre detail reklamácie */
.reklamaciaxl-detail {
  margin-bottom: 2rem;
}

.reklamaciaxl-detail .panel {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 15px;
  margin-bottom: 15px;
}

.reklamaciaxl-detail .panel-heading {
  background-color: #f5f5f5;
  padding: 10px 15px;
  margin: -15px -15px 15px;
  border-bottom: 1px solid #ddd;
  font-weight: bold;
}

.reklamaciaxl-history {
  max-height: 400px;
  overflow-y: auto;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px;
  margin-bottom: 15px;
}

.message-item {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px;
  margin-bottom: 10px;
}

.message-customer {
  background-color: #f7f7f7;
}

.message-employee {
  background-color: #e8f4fb;
}

.message-private {
  background-color: #f9f9d4;
}

.message-header {
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.message-date {
  float: right;
  color: #777;
  font-size: 0.9em;
}

.message-content {
  padding: 5px;
}

/* Štýly pre tlacidlá a akcie */
.btn-reklamacia {
  margin-right: 5px;
}

.status-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: bold;
  color: #fff;
}

.status-new {
  background-color: #5bc0de;
}

.status-processing {
  background-color: #f0ad4e;
}

.status-waiting {
  background-color: #337ab7;
}

.status-resolved {
  background-color: #5cb85c;
}

.status-rejected {
  background-color: #d9534f;
}

/* Responzívne úpravy */
@media (max-width: 768px) {
  .reklamaciaxl-list table {
    display: block;
    overflow-x: auto;
  }
  
  .reklamaciaxl-history {
    max-height: 300px;
  }
}