/* CSS Reset */

/* Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default spacing */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote {
  margin: 0;
  padding: 0;
}

/* Base document settings */
html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

/* Body defaults */
body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;

  color: #222;
  background-image: url("/images/background.png");
  background-repeat: no-repeat;
  background-size: cover;
}

/* Remove list styles */
ul,
ol {
  list-style: none;
}

/* Images */
img,
picture,
video,
canvas {
  max-width: 100%;
  display: block;
}

/* Form elements inherit fonts */
button,
input,
textarea,
select {
  font: inherit;
}

/* Remove button styling */
button {
  cursor: pointer;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* BEGIN CUSTOM CSS */
.inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.container {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.box {
  width: 300px;
  height: 200px;
}

.center-text {
  text-align: center;
}
ul {
  text-align: left;
}

button {
  background-color: #f60d88;
  color: #fff;
  font-weight: bold;
  padding: 10px 20px;
  border: none;

  cursor: pointer;
  font-size: 16px;
}
button:hover {
  background-color: #fe3fa5;
}

.border {
  border: 1px solid black;
}

.profile-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.profile-info li {
  margin-bottom: 5px;
}

.label {
  display: inline-block;
  width: 130px; /* Adjust until everything lines up */
  font-weight: normal;
}

.value {
  display: inline-block;
}

.photos-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
  align-items: start;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(2, 70px);
  gap: 8px;
  margin-left: 30px;
  padding-bottom: 20px;
}

.photo-gallery img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  filter: blur(8px);
  transition: filter 0.3s ease;
}

.photo-gallery img:hover {
  cursor: pointer;
}

#chatWindow {
  background-color: white;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 50px;
  opacity: 0.7;
}
footer hr {
  width: 30%;
  margin: 40px 0px 20px;
}
footer p {
  width: 650px;
  font-size: 14px;
}

.notification {
  position: fixed;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);

  background: #3277d3;
  color: white;

  padding: 15px 30px;
  border-radius: 8px;

  font-size: 16px;
  font-weight: bold;

  transition: top 0.4s ease;

  z-index: 9999;
}

.notification.show {
  top: 20px;
}

#loading {
  display: none;
}

.username {
  /* font-family: arial; */
  font-weight: bold;
}

/* span,
li {
  font-family: arial;
} */
