@import url("https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap");

:root {
  /* Brand Colors */
  --primary-dark: #000000;
  --primary-main: #111111;
  --primary-light: #333333;

  --secondary-main: #d4af37;
  /* Premium Gold Accent */
  --secondary-light: #e6c867;
  --secondary-dark: #b59223;

  /* Neutrals */
  --text-dark: #000000;
  --text-body: #333333;
  --text-light: #666666;
  --text-white: #ffffff;

  --bg-main: #f5f5f5;
  --bg-surface: #ffffff;
  --bg-dark: #000000;

  --border-color: #eeeeee;

  /* Utilities */
  --radius-sm: 12px;
  --radius-md: 30px;
  --radius-lg: 40px;
  --radius-pill: 100px;
  --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.1);
  --glass-bg: rgba(0, 0, 0, 0.9);
  --glass-border: 1px solid rgba(255, 255, 255, 0.1);
  --filter-gold: invert(85%) sepia(19%) saturate(1577%) hue-rotate(3deg) brightness(91%) contrast(85%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Almarai", sans-serif;
  scroll-behavior: smooth;
  background-color: var(--bg-main);
  color: var(--text-body);
}

body {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-dark);
  font-weight: 800;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-dark {
  background-color: var(--primary-dark);
  color: var(--text-white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--text-white);
}

.section-light {
  background-color: var(--bg-main);
}

.section-white {
  background-color: var(--bg-surface);
}

.text-center {
  text-align: center;
}

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 50%;
  height: 4px;
  background: var(--secondary-main);
  border-radius: var(--radius-sm);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-body);
  max-width: 700px;
  margin: 0 auto 3rem auto;
}

.heading-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: var(--filter-gold);
}

.section-dark .heading-icon {
  filter: var(--filter-gold);
}

.section-dark .section-subtitle {
  color: var(--text-white);
  opacity: 0.8;
}

/* Header & Navigation - Floating Pill Style with Glassmorphism */
.header {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1100px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  padding: 8px 0;
}

.header.scrolled {
  top: 12px;
  width: calc(100% - 24px);
  background: rgba(255, 255, 255, 0.9);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 0 32px;
}

.header.scrolled .navbar {
  height: 60px;
}

.logo img {
  height: 40px;
  transition: var(--transition);
}

.header.scrolled .logo img {
  height: 35px;
}

.nav-links {
  display: flex;
  gap: 12px;
}

.nav-links a {
  font-weight: 700;
  color: var(--text-dark);
  position: relative;
  padding: 8px 12px;
  font-size: 0.9rem;
  border-radius: var(--radius-pill);
}

.nav-links a:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--secondary-dark);
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text-dark);
}

/* Hero Section */
.hero {
  height: 100vh;
  max-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-main);
  padding-top: 80px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(245, 245, 245, 0.95) 0%, rgba(238, 238, 238, 0.6) 100%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 2;
  gap: 40px;
  align-items: center;
  max-width: 900px;
  padding-bottom: 80px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content h1 {
  font-size: 1.6rem;
  color: var(--primary-dark);
  margin-bottom: 20px;
  line-height: 1.5;
  text-align: center;

  @media (min-width:414px) {
    font-size: 1.6rem;
  }

  @media (min-width:768px) {
    font-size: 2rem;
  }

  @media (min-width:919px) {
    font-size: 3rem;
  }
}

.hero-content h1 span {
  color: var(--secondary-main);
}

.hero-content p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.6;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;

  @media (min-width:414px) {
    font-size: 1rem;
  }

  @media (min-width:768px) {
    font-size: 1.25rem;
  }

  @media (min-width:919px) {
    font-size: 1.25rem;
  }
}

.hero-content>div {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary-dark);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  background-color: var(--primary-main);
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: white;
  color: var(--primary-dark);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: var(--bg-main);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.btn i {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  transition: var(--transition);
}

.btn-secondary i {
  background: var(--bg-main);
}

.btn:hover i {
  transform: translateX(-5px);
}

.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: perspective(1000px) rotateY(-10deg);
  transition: var(--transition);
}

.hero-image:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.2));
}

/* Stats Section */
.stats {
  padding: 60px 0;
  background-color: var(--primary-main);
  color: white;
  margin-top: -50px;
  position: relative;
  z-index: 10;
  /* border-radius: var(--radius-lg); */
  box-shadow: var(--shadow-lg);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--secondary-main);
  margin-bottom: 10px;
  font-weight: 800;
}

.stat-item p {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
}

/* Features (Why Us) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary-main);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--bg-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--secondary-main);
}

.feature-icon svg {
  width: 32px;
  height: 32px;
}

.feature-card h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
  color: var(--primary-dark);
}

/* Vision & Mission */
.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.vm-box {
  background: white;
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.vm-box:hover {
  transform: scale(1.02);
}

.vm-box h3 {
  color: var(--primary-main);
  font-size: 1.8rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.vm-box p {
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Success Story Background */
.success-story {
  background-image: url("../images/bg-1.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  color: white;
}

.success-story::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.success-story .container {
  position: relative;
  z-index: 2;
}

.success-story .section-title,
.success-story .section-subtitle {
  color: white;
}

/* Timeline (Success Story) */
.timeline {
  position: relative;
  /* max-width: 800px; */
  margin: 0 auto;
  padding: 0;
}

.timeline::after {
  content: "";
  position: absolute;
  width: 4px;
  background-color: var(--border-color);
  top: 0;
  bottom: 0;
  right: 50%;
  margin-right: -2px;
  border-radius: 2px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-item.right {
  right: 0;
}

.timeline-item.left {
  right: 50%;
}

.timeline-item::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: -14px;
  background-color: var(--bg-surface);
  border: 4px solid var(--secondary-main);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-item.left::after {
  right: -14px;
  left: auto;
}

.timeline-content {
  padding: 32px;
  /* Glassmorphism styling */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.timeline-content h3 {
  color: white;
  margin-bottom: 10px;
  font-size: 1.3rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.timeline-content p {
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.timeline-date {
  color: var(--secondary-main);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 15px;
  display: inline-block;
  background: rgba(212, 175, 55, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 480px;
  box-shadow: var(--shadow-md);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover img {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      var(--primary-dark) 10%,
      rgba(7, 31, 59, 0.4) 60%,
      transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: white;
}

.service-overlay h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 15px;
  transform: translateY(20px);
  transition: var(--transition);
}

.service-overlay ul {
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.service-card:hover .service-overlay h3 {
  transform: translateY(0);
  color: var(--secondary-main);
}

.service-card:hover .service-overlay ul {
  opacity: 1;
  transform: translateY(0);
}

.service-overlay li {
  margin-bottom: 8px;
  padding-right: 20px;
  position: relative;
  font-size: 0.95rem;
}

.service-overlay li::before {
  content: "✓";
  position: absolute;
  right: 0;
  color: var(--secondary-main);
}

/* Partnerships */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.partner-card {
  background: var(--bg-surface);
  padding: 48px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.partner-card:hover {
  border-color: var(--secondary-main);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.partner-logo {
  height: 80px;
  margin: 0 auto 20px;
  object-fit: contain;
  /* filter: grayscale(100%); */
  transition: var(--transition);
  border-radius: 8px;
}

/* .partner-card:hover .partner-logo {
  filter: grayscale(0%);
} */

.partner-card h3 {
  color: var(--primary-main);
  margin-bottom: 15px;
}

.partner-badge {
  display: inline-block;
  background: var(--bg-main);
  color: var(--text-dark);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 5px 15px;
  border-radius: 20px;
  margin-bottom: 15px;
  color: var(--secondary-main);
  border: 1px solid var(--border-color);
}

/* Achievements */
.achievements-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.achievement-list {
  background: rgba(255, 255, 255, 0.05);
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.achievement-list h3 {
  color: var(--secondary-main);
  margin-bottom: 25px;
  font-size: 1.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.achievement-list li {
  margin-bottom: 15px;
  padding-right: 30px;
  position: relative;
  font-size: 1.1rem;
}

.achievement-list li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  background-color: var(--secondary-main);
  border-radius: 50%;
}

/* Contact Footer */
.footer {
  background-color: #000000;
  color: var(--text-light);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-about p {
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-title {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 2px;
  background-color: var(--secondary-main);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a:hover {
  color: var(--secondary-main);
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.contact-icon {
  color: var(--secondary-main);
  font-size: 1.2rem;
  margin-top: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  min-width: 32px;
  height: 24px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.footer-bottom p {
  color: var(--text-light);
}

/* TODO Alert */
.todo-note {
  background-color: #fff3cd;
  color: #856404;
  border-right: 4px solid #ffeeba;
  padding: 15px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}

.todo-note::before {
  content: "⚠️";
  font-size: 1.2rem;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s all ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media screen and (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 60px;
  }


  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid,
  .services-grid,
  .partners-grid,
  .achievements-wrapper {
    grid-template-columns: 1fr;
  }

  .vision-mission {
    grid-template-columns: 1fr;
  }

  .timeline::after {
    right: 31px;
  }

  .timeline-item {
    width: 100%;
    padding-right: 70px;
    padding-left: 0;
  }

  .timeline-item.left {
    right: 0;
  }

  .timeline-item::after {
    right: 21px;
  }

  .timeline-item.left::after {
    left: auto;
    right: 21px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .header {
    top: 12px;
    width: calc(100% - 24px);
  }

  .nav-links {
    position: fixed;
    top: 85px;
    right: -100%;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    width: calc(100% - 24px);
    left: 12px;
    right: auto;
    border-radius: var(--radius-lg);
    text-align: center;
    padding: 40px 0;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 0;
    visibility: hidden;
  }

  .nav-links.active {
    right: auto;
    left: 12px;
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    color: var(--text-dark);
    font-size: 1.2rem;
    padding: 15px 0;
    display: block;
    width: 100%;
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--secondary-main);
  }

  .menu-toggle {
    display: block;
  }
}

/* Color Matching Section */
.color-matching {
  padding: 80px 0;
  background-color: #fafafa;
}

.color-matching-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.cm-sidebar {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.cm-sidebar h3 {
  margin-bottom: 25px;
  color: var(--primary-main);
  line-height: 1.4;
}

.cm-tabs-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cm-tab {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cm-tab:hover {
  border-color: var(--secondary-main);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.cm-tab.active {
  border-color: var(--secondary-main);
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.1);
}

.cm-tab h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #333;
  text-transform: uppercase;
}

.cm-palettes {
  display: flex;
  gap: 10px;
}

.cm-palettes span {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: block;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
  background-size: cover;
  background-position: center;
}

.cm-content {
  flex: 2;
  min-width: 300px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.cm-pane {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.cm-pane.active {
  display: block;
}

.cm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 15px;
}

.cm-item {
  text-align: center;
  position: relative;
}

.cm-item span {
  position: absolute;
  color: #fff;
  /* mix-blend-mode: difference; */
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  font-size: 12px;
}

.cm-swatch {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 22px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.cm-swatch span {
  font-size: 0.85rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
  white-space: nowrap;
  z-index: 2;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .color-matching-layout {
    flex-direction: column;
  }

  .cm-sidebar {
    max-width: 100%;
    padding: 20px;
  }

  .cm-tabs-container {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
    gap: 10px;
    scrollbar-width: none;
  }

  .cm-tabs-container::-webkit-scrollbar {
    display: none;
  }

  .cm-tab {
    flex: 0 0 auto;
    padding: 10px 15px;
    white-space: nowrap;
  }

  .cm-tab h4 {
    margin-bottom: 0;
    font-size: 0.9rem;
  }

  .cm-palettes {
    display: none !important;
  }

  .cm-content {
    width: 100%;
    max-width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }
}