
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

/* Profile Styles */
.profile-details {
  padding: 20px;
}

.profile-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.profile-avatar {
  margin-right: 20px;
  color: #e67e22;
}

.profile-title h3 {
  margin-bottom: 5px;
  font-size: 1.5rem;
}

.profile-title p {
  color: #666;
  margin-bottom: 5px;
}

.profile-section {
  margin-bottom: 25px;
}

.profile-section h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #e67e22;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 5px;
}

.profile-section p {
  margin-bottom: 8px;
}

.profile-section ul {
  list-style-type: none;
  padding-left: 10px;
}

.profile-section ul li {
  margin-bottom: 5px;
  position: relative;
  padding-left: 15px;
}

.profile-section ul li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #e67e22;
}

/* Product Details Styles */
.product-details-header {
  display: flex;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.product-details-image {
  flex: 0 0 200px;
  margin-right: 20px;
}

.product-details-image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.product-details-info {
  flex: 1;
}

.product-details-info h2 {
  margin-bottom: 10px;
  color: #333;
}

.product-supplier, .product-price, .product-category, .product-stock {
  margin-bottom: 8px;
}

.product-details-section {
  margin-bottom: 20px;
}

.product-details-section h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #e67e22;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 5px;
}

.product-details-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.verified-badge {
  display: inline-block;
  background-color: #27ae60;
  color: white;
  font-size: 0.8rem;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 10px;
  vertical-align: middle;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #e67e22;
}

.nav-logo i {
  margin-right: 10px;
  font-size: 1.8rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #e67e22;
}

.btn-primary {
  background: #e67e22;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #d35400;
}

.btn-secondary {
  background: transparent;
  color: #e67e22;
  border: 2px solid #e67e22;
  padding: 8px 18px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: #e67e22;
  color: white;
}

.btn-info {
  background: #3498db;
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s;
}

.btn-info:hover {
  background: #2980b9;
}

.btn-small {
  padding: 5px 10px;
  font-size: 0.8rem;
}

.btn-danger {
  background: #e74c3c;
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s;
}

.btn-danger:hover {
  background: #c0392b;
}

.btn-large {
  padding: 15px 30px;
  font-size: 1.1rem;
  margin: 10px;
}

.btn-full {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 120px 20px 80px;
  display: flex;
  align-items: center;
  min-height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  flex: 1;
  padding-right: 50px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.3rem;
  color: #7f8c8d;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-buttons button i {
  margin-right: 10px;
}

.hero-image {
  flex: 1;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Improved Hero Section for Mobile */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 80px 20px 60px;
    text-align: center;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-buttons button {
    width: 100%;
    max-width: 250px;
  }

  .hero-image img {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons button {
    max-width: 100%;
  }
}

/* Features Section */
.features {
  padding: 100px 20px;
  background: #fff;
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: #f8f9fa;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card i {
  font-size: 3rem;
  color: #e67e22;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.feature-card p {
  color: #7f8c8d;
  line-height: 1.6;
}

/* About Section */
.about {
  padding: 100px 20px;
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  color: white;
}

.about-content {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.about-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.about-text ul {
  list-style: none;
}

.about-text li {
  margin: 15px 0;
  font-size: 1.1rem;
}

.about-text li i {
  color: #2ecc71;
  margin-right: 10px;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 40px;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 15px;
}

.close:hover {
  color: #000;
}

.modal-content h2 {
  color: #2c3e50;
  margin-bottom: 30px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: #2c3e50;
  font-weight: 500;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #e67e22;
}

/* Footer */
.footer {
  background: #2c3e50;
  color: white;
  padding: 60px 20px 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #e67e22;
  margin-bottom: 15px;
}

.footer-logo i {
  margin-right: 10px;
}

.footer-section h3 {
  color: #e67e22;
  margin-bottom: 20px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin: 10px 0;
}

.footer-section ul li a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #e67e22;
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  color: #bdc3c7;
  font-size: 1.5rem;
  margin-right: 15px;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #e67e22;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #34495e;
  color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {

  .nav-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%) scaleY(0.95);
    width: 90vw;
    max-width: 400px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    z-index: 999;
    padding: 20px 0;
    gap: 20px;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(.4,0,.2,1), transform 0.35s cubic-bezier(.4,0,.2,1);
  }

  .nav-menu.active {
    display: flex;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) scaleY(1);
  }

  .hamburger {
    display: flex;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 100px 20px 60px;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .modal-content {
    margin: 10% auto;
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .btn-large {
    padding: 12px 24px;
    font-size: 1rem;
  }

  .features h2,
  .about-text h2 {
    font-size: 2rem;
  }
}

/* Dashboard Styles */
.dashboard {
  padding: 100px 20px 40px;
  min-height: 100vh;
  background: #f8f9fa;
}

.dashboard-header {
  background: white;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dashboard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.dashboard-title {
  font-size: 2rem;
  color: #2c3e50;
}

.logout-btn {
  background: #e74c3c;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.stat-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-card i {
  font-size: 2.5rem;
  color: #e67e22;
  margin-bottom: 10px;
}

.stat-card h3 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 5px;
}

.stat-card p {
  color: #7f8c8d;
}

.dashboard-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.dashboard-section {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.section-title {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.section-title i {
  margin-right: 10px;
  color: #e67e22;
}

@media (max-width: 768px) {
  .dashboard-content {
    grid-template-columns: 1fr;
  }

  .dashboard-nav {
    flex-direction: column;
    gap: 15px;
  }
}

/* Additional styles for better functionality */
.supplier-card {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 2px solid transparent;
}

.supplier-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-color: #e67e22;
}

.supplier-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.verified-badge {
  background: #2ecc71;
  color: white;
  padding: 4px 8px;
  border-radius: 15px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.supplier-info {
  margin-bottom: 15px;
}

.supplier-info p {
  margin: 5px 0;
  color: #7f8c8d;
}

.rating {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #f39c12;
  font-weight: bold;
}

.supplier-products {
  color: #2c3e50;
}

.products-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.product-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeIn 0.3s ease-out;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.product-info {
  padding: 15px;
}

.product-info h4 {
  color: #2c3e50;
  margin-bottom: 5px;
}

.supplier-name {
  color: #7f8c8d;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.product-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.price {
  font-weight: bold;
  color: #e67e22;
  font-size: 1.1rem;
}

.stock {
  font-size: 0.9rem;
  color: #7f8c8d;
}

.search-bar {
  position: relative;
  margin-bottom: 20px;
}

.search-bar input {
  width: 100%;
  padding: 12px 40px 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 25px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.search-bar input:focus {
  outline: none;
  border-color: #e67e22;
}

.search-bar i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #7f8c8d;
}

.order-card {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 15px;
  border-left: 4px solid #e67e22;
  animation: fadeIn 0.3s ease-out;
}

.order-card:hover {
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.order-status {
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
}

.status-processing {
  background: #f39c12;
  color: white;
}

.status-delivered {
  background: #2ecc71;
  color: white;
}

.status-in-transit {
  background: #3498db;
  color: white;
}

.order-details p {
  margin: 5px 0;
  color: #2c3e50;
}

.order-product-info {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
}

.order-product-info img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}

.order-summary {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
}

.summary-row.total {
  font-weight: bold;
  font-size: 1.2rem;
  border-top: 2px solid #e9ecef;
  padding-top: 10px;
  margin-top: 15px;
}

.supplier-detail-card {
  max-width: 600px;
}

.supplier-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
}

.info-item i {
  font-size: 1.5rem;
  color: #e67e22;
}

.supplier-products-section {
  margin: 20px 0;
}

.products-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.product-tag {
  background: #e67e22;
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.9rem;
}

.supplier-actions {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.dashboard-actions {
  display: flex;
  gap: 15px;
}

.orders-list {
  max-height: 400px;
  overflow-y: auto;
}

.suppliers-list {
  max-height: 400px;
  overflow-y: auto;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .products-list {
    grid-template-columns: 1fr;
  }

  .supplier-actions {
    flex-direction: column;
  }

  .dashboard-actions {
    flex-direction: column;
    width: 100%;
  }

  .order-product-info {
    flex-direction: column;
    text-align: center;
  }

  .supplier-info-grid {
    grid-template-columns: 1fr;
  }
}

/* Form enhancements */
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
  transition: border-color 0.3s;
}

.form-group textarea:focus {
  outline: none;
  border-color: #e67e22;
}

/* Loading states */
.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  color: #7f8c8d;
}

.loading i {
  animation: spin 1s linear infinite;
  margin-right: 10px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Enhanced styles for better functionality */
.priority-high {
  border-left-color: #e74c3c !important;
  background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
}

.priority-badge {
  background: #e74c3c;
  color: white;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.7rem;
  margin-left: 10px;
}

.order-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 10px 0;
}

.order-notes {
  background: #f8f9fa;
  padding: 10px;
  border-radius: 5px;
  margin: 10px 0;
  border-left: 3px solid #e67e22;
}

.product-description {
  font-size: 0.9rem;
  color: #7f8c8d;
  margin: 10px 0;
  line-height: 1.4;
}

.product-origin {
  font-size: 0.8rem;
  color: #95a5a6;
  margin: 5px 0;
}

.good-stock {
  color: #2ecc71;
}

.medium-stock {
  color: #f39c12;
}

.low-stock {
  color: #e74c3c;
  font-weight: bold;
}

.btn-small {
  padding: 6px 12px;
  font-size: 0.85rem;
  margin: 2px;
}

.dashboard-actions button {
  white-space: nowrap;
}

/* Loading animation improvements */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Improved modal styles */
.modal-content {
  max-height: 90vh;
  overflow-y: auto;
}

.form-group input:focus + label,
.form-group select:focus + label,
.form-group textarea:focus + label {
  color: #e67e22;
}

/* Better responsive design */
@media (max-width: 768px) {
  .order-detail-grid {
    grid-template-columns: 1fr;
  }

  .product-actions {
    flex-direction: column;
  }

  .product-actions button {
    margin: 2px 0;
  }

  .dashboard-actions {
    flex-direction: column;
    gap: 10px;
  }

  .dashboard-actions button {
    width: 100%;
  }
}

/* Enhanced notification styles */
.notification {
  min-width: 300px;
  max-width: 500px;
  word-wrap: break-word;
}

/* Stock status indicators */
.stock-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 5px;
}

.stock-indicator.good {
  background: #2ecc71;
}

.stock-indicator.medium {
  background: #f39c12;
}

.stock-indicator.low {
  background: #e74c3c;
}

/* Enhanced button states */
button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

button:disabled:hover {
  transform: none;
  box-shadow: none;
}

/* Better form validation styles */
.form-group input:invalid,
.form-group select:invalid,
.form-group textarea:invalid {
  border-color: #e74c3c;
}

.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
  border-color: #2ecc71;
}

/* Enhanced card hover effects */
.product-card:hover,
.supplier-card:hover,
.order-card:hover {
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

/* Better spacing for mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .dashboard-header {
    padding: 20px 15px;
  }

  .dashboard-section {
    padding: 20px 15px;
  }

  .modal-content {
    margin: 5% auto;
    padding: 20px 15px;
  }
}