<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Style for the top navigation bar */
/* Remove default link styles */
a {
  text-decoration: none;
  color: inherit;
}
/* Hide the Tools button by default (desktop/larger screens) */
#moreTools {
  display: none;
}

  /* Header */
  header {
    text-align: center;
    color: white;
    margin: 20px 0;
  }
  .page-title {
    font-size: 2rem;
  }
  .page-info {
    font-size: 1rem;
  }
  
/* GRADIENT CONTAINER AND PANELS */
.gradient-container {
  display: flex;
  gap: 0;
}
.panel {
  flex: 1;
  height: 500px;
  transition: background-color 0.3s ease;
}

/* CONTROLS */
.buttons-container {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
}
.button {
  padding: 10px;
  color: white;
  background-color: #333;
  border: none;
  cursor: pointer;
}
.button:hover {
  background-color: #555;
}

/* LAYOUT CONTAINER FOR THE GRADIENT &amp; COLOR DATA BOX */
.mobile-control-container {
  /* Container if you need it to be flex, but not strictly necessary */
  display: flex;
  flex-direction: column;
  width: 100%;
}

.info-gradient-container {
  /* Remove the fixed huge height; let content size naturally */
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 20px; /* Space above if desired */
}

/* COLOR DATA CONTAINER */
#colorDataContainer {
  /* Let it size to contents instead of a fixed 50% height */
  width: 100%;
  display: flex;     /* If you want the "Change Color" button horizontally aligned */
  align-items: flex-start;
  margin-top: 0;  /* Optional vertical spacing above color data box */
  height: auto;      /* Let it shrink to fit the .color-data's height */
  gap: 20px;         /* Space between the color data box and the "Change Color" button if desired */
}
.color-data {
  /* Only as tall/wide as needed for the text + padding */
  position: relative;
  display: inline-block; /* So it only wraps the text width, not 100% of the parent */
  background: #222; /* Overridden by JS */
  color: white;
  padding: 20px;
  height: 101px; 
  width: 100%; 
}
/* The semi-transparent text container overlay:
   Place it absolutely at top-left, only wide enough for text. */
.color-data-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  display: inline-block;    /* Only as wide as its text content (plus padding) */
  padding: 10px 15px;
  text-align: left;
  width: 32%;
}

/* Adjust spacing for lines in overlay */
.color-data-overlay p {
  margin: 5px 0;
  line-height: 1.5;
}

/* The "Change Color" button could go here if you want to style it separately */
.open-color-picker {
  align-self: center;  /* or flex-start, depending on your layout preference */
  padding: 10px;
  background: #444;
  color: white;
  border: none;
  cursor: pointer;
}

/* LINEAR GRADIENT BOX */
#linearGradientContainer {
  width: 100%;         /* Now full width */
  height: 500px;       /* Or auto, pick your desired height */
  margin-top: 20px;    /* 20px below the color box */
  background: #333;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: Arial, sans-serif;
  color: white;
}

/* The button overlayed on the gradient box */
.gradient-direction-button {
  position: absolute;
  border-radius: 5px;
  top: 45%; /* Adjust for spacing if you like */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 15px;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 12px;
  z-index: 2; 
}
.gradient-direction-button:hover {
  background: rgba(0, 0, 0, 0.5);
}
#directionArrow {
  font-size: 16px;
  transition: transform 0.3s ease;
}

/* Disable text selection in the gradient panels */
.gradient-container, .panel {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

  .name-saved-palette-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #333;
  color: white;
  padding: 20px;
  border-radius: 8px;
  z-index: 9999;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  width: 300px;
}

.name-saved-palette-modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.name-saved-palette-modal-buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.hidden {
  display: none;
}

  /* Let the picker expand properly */
.pcr-app {
    width: auto !important;
    height: auto !important;
    border-radius: 5px;
    z-index: 99999 !important; /* Ensure it appears on top */
  }
  
  /* Hide the default collapsed Pickr button */
  .pcr-button {
    display: none !important; /* Force it to disappear */
    pointer-events: none !important; /* Just in case */
  }
  
  /* RESPONSIVE ADJUSTMENTS FOR SMALLER SCREENS */
@media (max-width: 768px) {
  #moreTools {
    display: inline-block; /* Show Tools button in mobile */
  }
}</pre></body></html>