.resources-container {
      max-width: 800px;
      margin: 30px auto;
      background: white;
      padding: 20px 30px;
      border-radius: 10px;
      margin-top: 100px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    form {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      margin-bottom: 25px;
    }
    input[type="text"],
    input[type="url"] {
      flex: 1;
      padding: 10px 15px;
      border: 1.5px solid #ddd;
      border-radius: 5px;
      font-size: 1rem;
      min-width: 140px;
    }
    button {
      background-color: #2980b9;
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 7px;
      font-size: 1rem;
      cursor: pointer;
      transition: background-color 0.3s ease;
      align-self: center;
    }
    button:hover {
      background-color: #1c5980;
    }
    table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 15px;
    }
    th, td {
      padding: 10px 12px;
      border: 1px solid #ddd;
      text-align: left;
      vertical-align: middle;
      font-size: 0.95rem;
    }
    th {
      background-color: #2980b9;
      color: white;
    }
    a {
      color: #2980b9;
      text-decoration: none;
    }
    a:hover {
      text-decoration: underline;
    }
    body{
        font-family: Arial, sans-serif;
    }
    .delete-btn {
      background-color: #c0392b;
      border: none;
      color: white;
      padding: 6px 12px;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }
    .delete-btn:hover {
      background-color: #7a1e18;
    }
    
    header {
  background-color: #2980b9;
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
  z-index: 100;
  position: fixed;
}

.header-left {
  position: absolute;
  left: 20px;
  display: flex;
  gap: 10px;
}

header h1 {
  margin: 0;
  font-size: 24px;
  text-align: center;
  flex-grow: 1;
}

header button {
  background-color: transparent;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

header button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

footer {
  text-align: center;
  padding: 15px;
  background: #89c0e4;
  margin-top: 210px;
  font-size: 0.8rem;
  color: #666;
}