* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at top, rgb(64, 79, 161), #1c1e25);
  color: #c7c7c7;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}


header {
  background: #0e1016;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  position: sticky;
  top: 0;
  z-index: 10;
}

header h1 {
  color: rgb(64, 79, 161);
  text-shadow: 2px 2px #000;
  margin: 0;
  font-size: 1.5rem;
}

#profileBtn {
  background: #ff0000;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: 2s;
  font-size: 1rem;
  max-width: 300px;
  max-height: 200px;

}

#profileBtn:hover {
  background: #5a0000;
  max-width: 400px;
  max-height: 350px;
}

/* CONTAINER */
.container {
  width: 95%;
  max-width: 600px;
  margin-top: 2rem;
  background: #000000;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

textarea,
input[type="text"],
input[type="file"] {
  width: 100%;
  margin: 5px 0;
  padding: 10px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  background: #1c1e25;
  color: #fff;
  outline: none;
}

button {
  margin-top: 10px;
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  background: #ffcc00;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
}

button:hover {
  background: #e6b800;
}

#phoneBtn {
  margin-top: 10px;
  width: 550px;
  padding: 10px;
  font-size: 1rem;
  background: #e6b800;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
}

#phoneBtn:hover {
  background: #da910b;
  height: 100px;
  transition: 0.5s;

}

#pcBtn {
  margin-top: 10px;
  width: 550px;
  padding: 10px;
  font-size: 1rem;
  background: #e6b800;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
}

#pcBtn:hover {
  background: #da910b;
  height: 100px;
  transition: 0.5s;
}

.complaint {
  background: #2d2f3a;
  padding: 10px 15px;
  border-radius: 8px;
  margin-bottom: 10px;
  border-left: 4px solid #ffcc00;
  position: relative;
  word-wrap: break-word;
}

.complaint .topbar {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 5px;
}


.profileInfo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}

/* FOOTER */
footer {
  margin-top: auto;
  padding: 1rem;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* HIDDEN STATE */
.hidden {
  display: none;
}

/* RESPONSIVE DESIGN */
@media (max-width: 600px) {
  header h1 {
    font-size: 1.2rem;
  }

  #profileBtn {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }

  .container {
    padding: 1rem;
    margin-top: 1rem;
  }

  textarea {
    font-size: 0.9rem;
    height: 80px;
  }
}