<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Page Header */
a {
  text-decoration: none;
  color: inherit;
  }
header {
  text-align: center;
  padding: 20px 0;
}
.page-title {
  font-size: 2rem;
  margin: 0;
}
.page-info {
  font-size: 1rem;
}

/* Buttons */
.button-row {
  display: flex;
  justify-content: center;
  margin: 20px auto; /* Center the button row and add spacing from header */
  width: 100%; /* Ensure full width to properly center items */
}
.custom-palette-button {
  padding: 10px;
  color: white;
  background-color: #333;
  border: none;
  cursor: pointer;
}
.custom-palette-button:hover {
  background-color: #555;
}

/* Custom Palette Request Modal */
.custom-palette-request-modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
}
.custom-palette-request-modal-content {
  background-color: white;
  width: 50%;
  max-width: 500px;
  padding: 20px;
  border-radius: 8px;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.custom-palette-request-modal-content h2 {
  color: black;
}
.close-button {
  float: right;
  font-size: 24px;
  cursor: pointer;
}
#paletteDescription {
  width: 95%;
  height: 100px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 25px;
  margin-top: 25px;
  resize: none; /* Prevent user from resizing */
  overflow-y: auto; /* Allow scrolling if necessary */
}

/* Buttons for Adding Base Colors */
.add-color1-button,
.add-color2-button {
  background-color: #DB058D;
  border: none;
  border-radius: 4px;
  color: white;
  padding: 10px;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
}
.add-color1-button:hover,
.add-color2-button:hover {
  background-color: #3f0128;
}

/* Base Color */
.hidden {
  display: none; /* Hide the swatch initially */
}
/* Base color swatch */
#baseColorContainer {
  margin-top: 15px;
  margin-bottom: 45px;
  display: flex;
  gap: 5px;
  justify-content: center;
}
#baseColor1,
#baseColor2 {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  border: 2px solid #ccc;
  background-color: transparent; /* No color until user selects */
}

/* Button to Post the Palette Request */ 
.post-request-button {
  background-color: #6F82C0;
  border: none;
  border-radius: 4px;
  color: white;
  padding: 10px;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
}
.post-request-button:hover {
  background-color: #323a55;
}

/* Palette Requests Container */
#palette-requests-container {
  width: 80%;
  max-width: 600px;
  margin: 30px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* Individual Palette Request */
.palette-request {
  background: transparent;
  border: none;
  border-bottom: 1px solid white;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
/* Username &amp; Description */
.palette-request .username,
.palette-request .description {
  color: white;
  display: block;
  padding: 0 !important;
}
.palette-request .username {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 5px !important;  /* Remove space below */
  line-height: 1 !important;    /* Prevent extra spacing */
}
.palette-request .description {
  font-size: 1rem;
  margin-top: 5px !important; /* Reduce space below username */
  margin-bottom: 10px;
}

/* Base Color Container */
.palette-request .base-colors {
  display: flex;
  justify-content: center;
  align-items: center; /* Aligns swatches properly */
  gap: 10px; /* Adds space between swatches */
  margin-top: 5px; /* Reduce space above swatches */
  margin-bottom: 5px;
}
/* Base Color Swatches */
.base-color-swatch {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  display: inline-block; /* Ensure swatches remain side by side */
}
/* Buttons Container - Ensures They Stay Side by Side */
.button-container {
  display: flex;
  gap: 10px; /* Space between buttons */
  justify-content: center; /* Center align */
  margin-top: 10px;
  margin-bottom: 5px;
}
/* Create Button */
.create-palette-button {
  background-color: #DB058D;
  border: none;
  border-radius: 4px;
  color: white;
  padding: 4px 10px 4px 10px;
  font-size: 0.8rem;
  cursor: pointer;
}
.create-palette-button:hover {
  background-color: #3f0128;
}
/* Post Button */
.post-palette-button {
  background-color: #6F82C0;
  border: none;
  border-radius: 4px;
  color: white;
  padding: 4px 17px 4px 17px;
  font-size: 0.8rem;
  cursor: pointer;
}
.post-palette-button:hover {
  background-color: #323a55;
}

/* Saved Palettes Modal */
#savedPalettesContainer {
  display: flex;
  width: 100%;
  flex-direction: column; /* Stack palettes vertically */
  gap: 8px; /* Space between each palette */
  align-items: center; /* Center palettes horizontally */
  margin: 0 auto;
}
/* Modal Styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.modal-content {
  position: relative;
  background: #333; 
  padding: 20px;
  border-radius: 8px;
  max-width: 600px;
  width: 70%;         /* if you want it to be responsive */
  max-height: 70vh;   /* or a smaller fraction, e.g. 70vh */
  overflow-y: auto;   /* scroll within the content box if itâ€™s too tall */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.modal-content h2 {
  color: white;
}
.modal-content p {
  margin: 10px 0;
  padding-bottom: 10px; /* Add space between the text and the line */
  border-bottom: 1px solid #666; /* Adjust color and thickness of the line */
  color: white;
}
.close-button {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  color: white;
}
.saved-palette-box {
  /* Take up nearly full width inside the modalâ€™s container */
  width: 100%;           
  margin: 0;  /* center horizontally, space underneath */
  border-radius: 4px;
  background-color: #333;
  cursor: pointer;
  display: flex;
  flex-direction: column; /* stack name + swatch row vertically */
  align-items: flex-start;     /* palette name alignment */
}
/* The name on top */
.saved-palette-box h3 {
  margin-bottom: 5px;  /* a little space below the name */
  text-align: center;
  font-size: 1rem;
  color: white;
}
/* The row of swatches below the name */
.saved-swatch-row {
  display: flex;
  justify-content: center; /* center all swatches horizontally */
  width: 100%;            /* fill the entire .palette-box width */
  gap: 2px;               /* space between swatches */
}
/* Each color swatch */
.saved-small-swatch {
  flex: 1;              /* each swatch expands equally if no width is set */
  height: 58px;         /* or 40px, whichever you prefer */
  border: none;
  border-radius: 2px;
}

/* Color Picker for Adding a Base Color */
.pcr-button {
  display: none !important; /* Hide the red square that Pickr normally generates */
}

/* Mobile Optimization: Change width to 95% when screen width is 768px or smaller */
@media (max-width: 768px) {
  input, textarea {
    font-size: 16px !important; /* Ensures no zooming on focus */
  }
  .custom-palette-request-modal-content {
    width: 95%;
    max-width: none; /* Remove the max-width restriction */
  }
}</pre></body></html>