/* Import Google font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

#home {
  position: fixed; 
  top: 15px; 
  left: 30px; 
  z-index: 1000;
}

#home img {
  width: 60px; 
  height: auto; 
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: url("https://img.odcdn.com.br/wp-content/uploads/2022/07/james-webb-imagem-1024x593.jpg");
  background-size: cover;
}

.container {
  display: flex;
  width: 100%;
  gap: 10px;
  padding: 20px; /* Aumentado para mais espaço */
  max-width: 1050px;
  background: white; /* Fundo branco para a container */
  border-radius: 10px; /* Bordas arredondadas */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Sombra */
}

section {
  background: #fff;
  border-radius: 7px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Sombra mais suave */
}

.tools-board {
  width: 210px;
  padding: 15px 22px 0;
  background: #f9f9f9; /* Fundo leve para a barra de ferramentas */
  border-radius: 7px; /* Bordas arredondadas */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Sombra */
}

.tools-board .row {
  margin-bottom: 20px;
}

.row .options {
  list-style: none;
  margin: 10px 0 0 5px;
}

.row .options .option {
  display: flex;
  cursor: pointer;
  align-items: center;
  margin-bottom: 10px;
}

.option:is(:hover, .active) img {
  filter: invert(17%) sepia(90%) saturate(3000%) hue-rotate(900deg) brightness(100%) contrast(100%);
}

.option :where(span, label) {
  color: #5A6168;
  cursor: pointer;
  padding-left: 10px;
  transition: color 0.3s ease; /* Transição suave */
}

.option:is(:hover, .active) :where(span, label) {
  color: #4A98F7;
}

.option #fill-color {
  cursor: pointer;
  height: 14px;
  width: 14px;
}

#fill-color:checked ~ label {
  color: #4A98F7;
}

.option #size-slider {
  width: 100%;
  height: 5px;
  margin-top: 10px;
}

.colors .options {
  display: flex;
  justify-content: space-between;
}

.colors .option {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  margin-top: 3px;
  position: relative;
  border: 2px solid transparent; /* Bordas para melhorar o design */
  transition: border-color 0.3s ease; /* Transição suave */
}

.colors .option:hover {
  border-color: #4A98F7; /* Cor da borda ao passar o mouse */
}

.colors .option:nth-child(1) {
  background-color: #fff;
  border: 1px solid #bfbfbf;
}

.colors .option:nth-child(2) {
  background-color: #000;
}

.colors .option:nth-child(3) {
  background-color: #E02020;
}

.colors .option:nth-child(4) {
  background-color: #6DD400;
}

.colors .option:nth-child(5) {
  background-color: #4A98F7;
}

.colors .option.selected::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  height: 12px;
  width: 12px;
  background: inherit;
  border-radius: inherit;
  border: 2px solid #fff;
  transform: translate(-50%, -50%);
}

.colors .option:first-child.selected::before {
  border-color: #ccc;
}

.option #color-picker {
  opacity: 0;
  cursor: pointer;
}

.buttons button {
  width: 100%;
  color: #fff;
  border: none;
  outline: none;
  padding: 11px 0;
  font-size: 0.9rem;
  margin-bottom: 13px;
  background: #4A98F7; /* Cor de fundo dos botões */
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease; /* Transição suave */
}

.buttons .clear-canvas {
  background: #6C757D; /* Cor de fundo do botão de limpar */
  border: 1px solid #6C757D;
}

.clear-canvas:hover {
  color: #fff;
  background: #5a6268; /* Cor ao passar o mouse */
}

.buttons .save-img {
  background: #4A98F7;
  border: 1px solid #4A98F7;
}

.drawing-board {
  flex: 1;
  overflow: hidden;
  border-radius: 7px; /* Bordas arredondadas */
}

.drawing-board canvas {
  width: 100%;
  height: 100%;
  border-radius: 7px; /* Bordas arredondadas */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Sombra */
}
