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

body {
  font-family: "Segoe UI", "Roboto", sans-serif;
  background-color: #00bcd4;
  color: #333;
}

.container {
  display: flex;
  height: 100vh;
}

.sidebar {
  width: 220px;
  background-color: #fff;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}

.sidebar .logo {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #00bcd4;
  margin-bottom: 30px;
}

.sidebar nav ul {
  list-style: none;
}

.sidebar nav li {
  padding: 12px 20px;
  cursor: pointer;
  transition: background 0.3s;
}

.sidebar nav li:hover,
.sidebar nav li.active {
  background-color: #ffd700;
  color: #000;
  font-weight: bold;
}

.main {
  flex: 1;
  background-color: #f4f4f4;
  padding: 20px;
  overflow-y: auto;
}

.tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  gap: 10px;
}

.tab {
  background-color: #e0f7fa;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: inline-block;
  font-size: 1rem;
  transition: background-color 0.2s, border 0.2s;
}

.tab:hover {
  background-color: #b2ebf2;
}

.tab.active {
  background-color: #e0f7fa;
  font-weight: normal;
  border: none;
}

.language {
  padding: 5px;
}

.top-actions button {
  margin-left: 10px;
  padding: 6px 10px;
  border: none;
  border-radius: 4px;
  background-color: #00bcd4;
  color: white;
  cursor: pointer;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.card h3 {
  margin-bottom: 15px;
  color: #00bcd4;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 10px 20px;
}

.form-section {
  background: #fff;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  max-width: 600px;
}

.section-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 25px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}

.form-group {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.form-group label {
  flex: 0 0 240px;
  font-size: 1rem;
}

.styled-input {
  flex: 1;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  background-color: #f9f9f9;
}

.styled-input:disabled {
  background-color: #f0f0f0;
  color: #999;
}

.styled-checkbox {
  margin-right: 5px;
}

.checkbox-label {
  font-size: 1rem;
}

.button-container {
  display: flex;
  justify-content: flex-end;
  margin-top: 35px;
  padding-right: 15px;
}

.save-button {
  background-color: #00bcd4;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.save-button:hover {
  background-color: #00acc1;
}

/* Remove setas de input number */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
