.detail-container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .detail-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  }
  
  .image-container {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
    margin-top: 50px;
    margin-bottom: 50px;

  }
  
  .image-container img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
  }
  
  .detail-header {
    padding: 2rem;
    border-bottom: 1px solid #eee;
  }
  
  .detail-content {
    padding: 2rem;
  }
  
  .detail-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
  }
  
  .detail-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  
  .deadline-alert {
    border-left: 4px solid;
    padding: 1rem;
    margin: 1.5rem 0;
  }
  
  .section-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f1f1f1;
  }
  

  .content {
  color: #495057;
  text-align: center; /* İçerik metnini de ortala */
  width: 100%;           /* İçerik alanının tam genişlik almasını sağlar */
  max-width: 800px;      /* İçeriğin çok geniş olmasını engeller, okunabilirliği artırır */
  text-align: center;    /* Başlık ve bağlantıyı ortalar */
  }
  
  .content p {
    line-height: 1.6; 
    margin-bottom: 1.5rem;
    color: #4b5563;
    white-space: pre-wrap; /* Boşlukları ve satır sonlarını korur (LinkedIn gibi) */
    text-align: left; /* Paragraf metnini sola hizala */  /* Başlık ve bağlantıyı ortalar */
}

  

  .country-badge {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background-color: #f8f9fa;
    display: inline-flex;
    align-items: center;
    margin: 0 0.5rem 0.5rem 0;
  }
  
  .list-group-item {
    padding: 0.8rem 1.25rem;
    border-left: none;
    border-right: none;
  }
  
  .breadcrumb {
    padding: 0.75rem 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 2rem;
  }
  
  @media (max-width: 768px) {
    .detail-title {
      font-size: 1.6rem;
    }
    
    .detail-meta {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .detail-meta .text-muted {
      margin-top: 0.5rem;
    }
    
    .detail-header, .detail-content {
      padding: 1.5rem;
    }
    
    .image-container {
      max-height: 300px;
    }
    
    .image-container img {
      max-height: 300px;
    }
  }