/* Responsive modal boyutları */
@media (min-width: 768px) {
  .chest-result-modal {
    max-width: 85vw;
    width: 85vw;
    min-width: 600px;
  }
}

@media (min-width: 1024px) {
  .chest-result-modal {
    max-width: 80vw;
    width: 80vw;
    min-width: 800px;
  }
}

@media (min-width: 1200px) {
  .chest-result-modal {
    max-width: 75vw;
    width: 75vw;
    min-width: 900px;
  }
}

@media (min-width: 1400px) {
  .chest-result-modal {
    max-width: 70vw;
    width: 70vw;
    min-width: 1000px;
  }
}

/* Responsive Search Section */
@media (max-width: 768px) {
  .chest-result-header {
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
  
  .chest-result-title-section {
    flex-direction: column;
    gap: 8px;
  }
  
  .chest-result-chest-img {
    width: 50px;
    height: 50px;
  }
  
  .chest-result-title {
    font-size: 1.2em;
  }
  
  .chest-result-table th,
  .chest-result-table td {
    padding: 12px 8px;
    font-size: 0.9em;
  }
  
  .chest-result-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .chest-result-actions .btn {
    width: 100%;
  }
}
