body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 20%, #111827 90%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    line-height: 1.3;
  }
  
  .maintenance-container {
    width: 90%;
    max-width: 600px;
    padding: 2rem;
  }
  
  .maintenance-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    backdrop-filter: blur(10px);
  }

/*status*/
.online { 
    color: #2ecc71;
    font-weight: bold;
}
.offline { 
    color: #e74c3c;
    font-weight: bold;
}
.paused { 
    color: #3498db;
    font-weight: bold;
}
/*table*/
table {
    width: 100%;
    border-collapse: collapse;
}
th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}
th {
    background-color: #f8f9fa;
    font-weight: bold;
}
tr:hover {
    background-color: #f8f9fa;
}


/* NEW CSS */
.details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .detail-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .detail-item i {
    color: #2968ED;
  }

    .social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .social-link {
    color: #4a5568;
    font-size: 1.5rem;
    transition: color 0.3s ease;
  }
  
  .social-link:hover {
    color: #4299e1;
  }

  h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
  }

  .icon-wrapper {
    position: relative;
    height: 80px;
    margin-bottom: 2rem;
  }