/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styles */
body {
  font-family: 'Arial', sans-serif;
  background-color: #121212;
  color: #fff;
  margin: 0;
  padding: 0;
}

/* My Listings Section */
.my-listings-section {
  background-color: #1c1c1c;
  padding: 60px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #ff5a00;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 1.1rem;
  color: #bbb;
  margin-bottom: 30px;
}

/* Listing Grid */
.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.listing-item {
  background-color: #333;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.listing-item:hover {
  transform: translateY(-10px);
}

.listing-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 2px solid #444;
}

.listing-details {
  padding: 20px;
}

.listing-details h3 {
  font-size: 1.6rem;
  color: #ff5a00;
  margin-bottom: 10px;
}

.listing-details p {
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 15px;
}

.listing-actions {
  display: flex;
  gap: 15px;
}

.action-button {
  padding: 8px 15px;
  font-size: 1rem;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  width: 100%;
  display: inline-block;
}

.edit-btn {
  background-color: #4caf50;
  transition: background-color 0.3s;
}

.edit-btn:hover {
  background-color: #45a049;
}

.delete-btn {
  background-color: #f44336;
  transition: background-color 0.3s;
}

.delete-btn:hover {
  background-color: #e53935;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .listing-item {
    padding: 10px;
  }

  .listing-details h3 {
    font-size: 1.4rem;
  }

  .listing-details p {
    font-size: 0.9rem;
  }
}