.Dots {
  width: 600px;
  height: 400px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-left: 2px solid orange;

  /* Black gradient background */
  background: linear-gradient(135deg, #000000, #1a1a1a, #2d2d2d, #1a1a1a);

  /* Orange dots pattern overlay using radial gradient */
  background-image:
          radial-gradient(circle at 20% 20%, rgba(255, 165, 0, 0.8) 2px, transparent 2px),
          radial-gradient(circle at 80% 20%, rgba(255, 140, 0, 0.6) 1px, transparent 1px),
          radial-gradient(circle at 40% 40%, rgba(255, 69, 0, 0.7) 1.5px, transparent 1.5px),
          radial-gradient(circle at 60% 60%, rgba(255, 165, 0, 0.8) 2px, transparent 2px),
          radial-gradient(circle at 20% 80%, rgba(255, 140, 0, 0.6) 1px, transparent 1px),
          radial-gradient(circle at 80% 80%, rgba(255, 69, 0, 0.7) 1.5px, transparent 1.5px),
          radial-gradient(circle at 10% 50%, rgba(255, 140, 0, 0.6) 1px, transparent 1px),
          radial-gradient(circle at 90% 30%, rgba(255, 165, 0, 0.8) 2px, transparent 2px),
          radial-gradient(circle at 30% 70%, rgba(255, 69, 0, 0.7) 1.5px, transparent 1.5px),
          radial-gradient(circle at 70% 10%, rgba(255, 140, 0, 0.6) 1px, transparent 1px);

  background-size: 80px 80px, 60px 60px, 100px 100px, 120px 120px, 90px 90px, 70px 70px, 50px 50px, 110px 110px, 85px 85px, 95px 95px;

  /* Content styling */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  position: relative;
}

.industry h1 {
    font-size: 1.4rem;
    color: white;
}

.industry h2 {
    font-size: 1.3rem;
    color: white;
}

.industry h3 {
    font-size: 1.2rem;
    color: white;
}

.industry h4 {
    color: white;
}

.industry p, .industry ul { 
    margin-top: 16px;
    margin-bottom: 16px;
}

.industry li strong {
    color: white;
}
html {
  background-color: #eeeeee;
}
body {
  font-family: Roboto, sans-serif;
}
.react-grid-layout {
  position: relative;
  transition: height 200ms ease;
}
.react-grid-item {
  transition: all 200ms ease;
  transition-property: left, top;
}
.react-grid-item.cssTransforms {
  transition-property: transform;
}
.react-grid-item.resizing {
  z-index: 1;
  will-change: width, height;
}

.react-grid-item.react-draggable-dragging {
  transition: none;
  z-index: 3;
  will-change: transform;
}

.react-grid-item.react-grid-placeholder {
  background: blue;
  opacity: 0.2;
  transition-duration: 100ms;
  z-index: 2;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.react-grid-item > .react-resizable-handle {
  position: absolute;
  width: 20px;
  height: 20px;
  bottom: 0;
  right: 0;
  cursor: se-resize;
}

.react-grid-item > .react-resizable-handle::after {
  content: '';
  position: absolute;
  right: 3px;
  bottom: 3px;
  width: 5px;
  height: 5px;
  border-right: 2px solid rgba(0, 0, 0, 0.4);
  border-bottom: 2px solid rgba(0, 0, 0, 0.4);
}

.react-grid-item:not(.react-grid-placeholder) {
  background: grey;
}

.window-header {
  background-color: lightblue;
  display: flex;
  justify-content: space-between;
  height: 25px;
}

.logo-container {
  overflow: hidden;
}

.app-name {
  color: black;
  font-size: 14px;
  margin-bottom: 5px;
  padding-left: 8px;
}

.actions-container {
  display: flex;
  padding-top: 3px;
}

.icon {
  color: black;
  font-size: 20px;
  padding-top: 5px;
}

.window-button-style {
  background-color: transparent;
  border: none;
  width: 20px;
  height: 20px;
  padding: 0;
  margin: 0;
  transition: background-color 150ms ease;
}

.window-controls-icon {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 20px;
  height: 20px;
  transition: fill 150ms ease;
}

.settings-window:hover {
  background-color: orange;
}

.close-window:hover {
  background-color: #e6004c;
}

.settings-window:focus {
  outline: none;
}

.close-window:focus {
  outline: none;
}
