/* common sidebar css */
body {
  background-color: #f4f6f9;
  font-family: 'Segoe UI', sans-serif;
}

.sidebar {
  height: 100vh;
  background-color: #343a40;
  color: white;
  padding-top: 30px;
}

.sidebar h4 {
  text-align: center;
  margin-bottom: 30px;
}

.sidebar a {
  color: #adb5bd;
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  font-size: 15px;
}

.sidebar a:hover,
.sidebar a.active {
  background-color: #495057;
  color: #fff;
}

.main-content {
  padding: 40px 30px;
  background: linear-gradient(135deg, #bfe0c4, #e2e8f0);

}

.monitor-section {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.monitor-header {
  background-color: #6c757d;
  color: white;
  padding: 16px 24px;
  font-size: 1.25rem;
  font-weight: 500;
  border-bottom: 1px solid #dee2e6;
}

.monitor-body {
  padding: 24px;
}

@media (max-width: 768px) {
  .sidebar {
    display: none;
  }
 
}
/* incidents and monitoring file css */
.table thead {
  background-color: #f1f1f1;
}

.table td,
.table th {
  vertical-align: middle;
}

.badge-up {
  background-color: #28a745;
}

.badge-down {
  background-color: #dc3545;
}

.action-icon {
  cursor: pointer;
  color: #dc3545;
  font-size: 1.2rem;
}

.action-icon:hover {
  color: #a71d2a;
}
.website-link {
  color: #007bff;
  text-decoration: none;
}

.website-link:hover {
  text-decoration: underline;
}
.table-row th {
    background:#b6dee9;
  }
/* update_profile.html css */
.form-label {
      font-weight: 500;
    }

.form-control {
      border-radius: 6px;
    }

.btn-update {
      background: #5ab1a4;
      color: white;
      font-weight: 500;
      padding: 10px 20px;
      border-radius: 6px;
    }

.btn-update:hover {
      background-color: #0056b3;
    }
/* new_monitor.html css */
 .form-control:focus {
      box-shadow: none;
      border-color: #6c757d;
    }

.btn-submit {
      margin-top: 20px;
      background: #5ab1a4;
    }