body {
  font-family: "Roboto", sans-serif;
  display: flex;
  height: 100vh;
  margin: 0;
  padding: 0;
  background-color: #f0f0f0;
  flex-direction: column;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 2rem;
  font-weight: bold;
  color: #333;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #007bff;
  color: white;
  border-radius: 8px;
  margin-right: 15px;
}

.logo-icon:before {
  content: "\1F3E0"; /* Unicode character for house */
  font-size: 1.5rem;
}

.logo-text {
  color: #333;
}

.logo-text span {
  color: #28a745;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  color: white;
  padding: 10px 20px;
}

.gitlab-button, .generic-button {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background-color: #FC6D26;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-family: Arial, sans-serif;
}

.gitlab-button:hover, .generic-button:hover {
  background-color: #E24329;
  transition: background-color 0.3s;
}

.gitlab-logo {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.container {
  display: flex;
  height: calc(100vh - 60px);
}

.sidebar {
  width: 200px;
  background-color: #f4f4f4;
  padding: 15px;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}

.sidebar ul {
  list-style-type: none;
  padding: 0;
}

.sidebar ul li {
  padding: 10px 0;
  font-size: 18px;
}

.sidebar ul li:hover {
  background-color: #ddd;
  cursor: pointer;
}

.main-content {
  flex: 1;
  padding: 20px;
}


form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

form div {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #374151;
}

input, textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-size: 1rem;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.1);
}

form button {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background-color: #FC6D26;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-family: Arial, sans-serif;
  box-shadow: none;
  border:none;
}

form button:hover {
  background-color: #E24329;
  transition: background-color 0.3s;
}

