
body {
  background-image: url('assets/img/background/tumblr_ncy3l63iwx1rpmwhjo4_640.jpg');
  background-size: 200px 200px; /* controla o tamanho do bloco */
  background-repeat: repeat;    /* repete em mosaico */
}

/* ================================================
   BARRA DE NOTAS
   ================================================ */
.msn-notes-bar {
  display: flex;
  justify-content: center; 
  gap: 16px;
  padding: 20px;
  flex-wrap: wrap; /
}

.msn-notes-bar::-webkit-scrollbar {
  height: 6px;
}

.msn-notes-bar::-webkit-scrollbar-thumb {
  background: #aac1e3;
  border-radius: 3px;
}

/* ================================================
   JANELA DA NOTA
   ================================================ */
.msn-note-window {
  flex: 0 0 auto;
  width: 300px;
  background: #fff;
  border: 2px solid #1f55a3;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  overflow: hidden;
}

/* Barra azul */
.msn-note-titlebar {
  background: linear-gradient(
    180deg,
    #5d9ce8 0%,
    #2f6fc4 45%,
    #1f55a3 100%
  );

  color: #fff;
  display: flex;
  align-items: center;
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 700;
}

.msn-note-titletext {
  flex: 1;
}

.msn-note-time {
  font-size: 11px;
  margin-right: 8px;
}

.msn-note-winbtns {
  display: flex;
  gap: 2px;
}

.wb {
  width: 16px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  background: rgba(255,255,255,.18);
  border-radius: 2px;
}

.wb.close:hover {
  background: #d33;
}

/* ================================================
   CONTEÚDO
   ================================================ */
.msn-note-content {
  display: flex;
  align-items: center;
  padding: 16px;
}

/* Avatar */
.msn-note-avatar-wrap {
  position: relative;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.msn-note-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #1f55a3;
}

.msn-note-status {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  background: #4cd24c;
  border: 2px solid #fff;
  border-radius: 50%;
}

/* Bolinhas */
.msn-note-dots {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dot {
  background: #fff;
  border-radius: 50%;
}

.dot-small {
  width: 9px;
  height: 9px;
}

.dot-big {
  width: 16px;
  height: 16px;
}

/* Balão */
.msn-note-bubble {
  background: #fff;
  box-shadow: 0 1px 5px rgba(0,0,0,.15);
  border-radius: 18px;
  padding: 12px 16px;
  font-size: 14px;
  color: #1c1c1c;
  line-height: 1.4;
  flex: 1;
}