.resource-actions {
    display: flex;
    gap: 6px;
    margin-top: 10px;
    flex-wrap: wrap;
  }
  
  .btn-publish {
    background-color: #6db1ed;
    border-color: #a8c5df;
    color: white;
  }
  
  .btn-delete {
    background-color: #e74c3c;
    border-color: #e74c3c;
    color: white;
  }
  
  .resource-card-buttons {
    display: flex;
    /* justify-content: space-between; */
    gap: 5px;
    margin-top: 12px;
  }
  
  .edit-file-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    background-color: #f2f2f2;
    padding: 10px 12px;
    border-radius: 6px;
    margin-bottom: 20px;
  }
  
  .file-icon {
    color: #0072c9;
    font-size: 18px;
  }
  
  .file-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

.add-button-wrapper {
  text-align: right;
  padding: 20px;
}

.accordion-container {
  width: 100%;
  margin: 0 auto;
  margin-top: 8px;
}

.accordion-body {
  background-color: rgb(206, 220, 233);
  padding: 0;
}