html {
  overflow: -moz-scrollbars-vertical;
}

body {
  background: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  color: #3c3d3f;
  text-align: left;
  max-width: 90%;
  margin: auto;
}

header {
  
  display: flex;
  margin-top: 38px;
  height: 64px;
  justify-content: flex-end;
}

header #title {
  
  color: black;
  text-decoration: none;
  margin: 0px;
  width: 100%;
  font-size: 48px;
}


.main-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.user-header {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 15px;
  align-items: center;
}

.gallery-list-view {
  display: block;
  max-width: 600px;
}

.gallery-item {
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 100%;
}

.galleries-pagination {
  margin-top: 30px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.galleries-pagination .page-info {
  display: flex;
  align-items: center;
  min-width: 120px;
}


