/*
$background: linear-gradient(190deg, #1f1821, #14181b);
$text-color: #e6ecf3;
$text-date-color: $line-color;
$hline-color: #fd4ea0;
$hline-circle-color: $hline-color;
$vline-color: $hline-color;
$vline-secondary-color: rgba(255, 255, 255, 0.5); 
$vline-circle-color: $text-color;
*/
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@keyframes strokeoffset {
    0% {
      stroke-dashoffset: 0px;
    }
    100% {
      stroke-dashoffset: 1000px;
    }
  }
  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .roadmap {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    min-width: 100%;
    padding: 0px 80px 80px 0px;
    overflow: hidden;
    color: rgb(255, 255, 255);
    background: linear-gradient(45deg, #141b09 0%, #000000e0 100%);
    font-family: "Rubik", sans-serif;
    list-style: none;
  }
  @media (max-width: 1200px) {
    .roadmap {
      padding: 0 0 80px 0;
      align-items: center;
      width: auto;
      flex-direction: row;
      justify-content: flex-start;
    }
  }
  .roadmap-title {
    padding-left: 0.1em;
    z-index: 1;
    font-size: 3em;
    font-family: "Rubik", arial, sans-serif;
    text-transform: uppercase;
    text-align: end;
    line-height: 1;
  }
  @media (min-width: 1201px) {
    .roadmap-title {
      padding-bottom: 80px;
    }
  }
  @media (max-width: 1200px) {
    .roadmap-title {
      font-size: calc(1.1em);
      align-self: flex-start;
      width: 200vw;
      z-index: 1;
      color:white;
      word-wrap: break-word;
      position: absolute;
    }
  }
  .roadmap-bg {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("https://scitechdaily.com/images/Neuroscience-Brain-AI-Neural-Network-Concept.jpg" ) center/cover no-repeat;
    background-size: cover;
    opacity: 0.12;

  }
  .roadmap-timeline {
    display: flex;
    height: 0;
  }
  @media (max-width: 1200px) {
    .roadmap-timeline {
      flex-direction: column;
      height: auto;
      width: 0;
      padding-left: 50%;
      padding-right: 50%;
    }
  }
  .roadmap-timeline::before {
    content: "";
    position: relative;
    background: rgb(230, 118, 5);
  }
  @media (max-width: 1200px) {
    .roadmap-timeline::before {
      height: 300px;
      left: -5px;
      width: 10px;
    }
  }
  @media (min-width: 1201px) {
    .roadmap-timeline::before {
      width: 180px;
      top: -5px;
      height: 10px;
    }
  }
  .roadmap-timeline::after {
    content: "";
    position: absolute;
    align-self: center;
    width: 340px;
    height: 800px;
    left: 0;
    background: url("https://s14.postimg.org/cwe76i4r5/paint2.png") left center;
    background-repeat: no-repeat;
  }
  @media (max-width: 1200px) {
    .roadmap-timeline::after {
      top: 0;
      transform: translateX(calc(100vw - 330px)) rotateZ(90deg);
      width: 800px;
      height: 800px;
      left: -50vw;
    }
  }
  .roadmap-timeframe {
    display: flex;
    flex-grow: 1;
    flex-direction: column-reverse;
    align-self: flex-end;
    position: relative;
    z-index: 1;
    min-width: 100px;
    width: 0;
  }
  @media (max-width: 1200px) {
    .roadmap-timeframe {
      width: 50vw;
      max-width: 300px;
    }
  }
  .roadmap-timeframe::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    background: #0cc0ed;
    border-radius: 50%;
  }
  @media (min-width: 1201px) {
    .roadmap-timeframe::after {
      left: 50%;
      bottom: 0;
      transform: translate(-50%, 50%);
    }
  }
  @media (max-width: 1200px) {
    .roadmap-timeframe::after {
      right: -12.5px;
      bottom: -12.5px;
    }
  }
  .roadmap-timeframe:nth-child(3n-2) .roadmap-swirly path {
    animation-delay: -2s;
  }
  .roadmap-timeframe:nth-child(3n-1) .roadmap-swirly path {
    animation-delay: -4s;
  }
  @media (max-width: 1200px) {
    .roadmap-timeframe:first-child {
      width: 40vw;
      margin-top: -42.5px;
    }
  }
  @media (min-width: 1201px) {
    .roadmap-timeframe:last-child .roadmap-events::after {
      content: none;
    }
  }
  .roadmap-timeframe:nth-child(even) {
    flex-direction: column;
    align-self: flex-start;
  }
  @media (min-width: 1201px) {
    .roadmap-timeframe:nth-child(even)::after {
      top: 0;
      transform: translate(-50%, -50%);
    }
  }
  @media (max-width: 1200px) {
    .roadmap-timeframe:nth-child(even)::after {
      right: auto;
      left: -12.5px;
    }
  }
  .roadmap-timeframe:nth-child(even) .roadmap-date {
    bottom: auto;
  }
  @media (min-width: 1201px) {
    .roadmap-timeframe:nth-child(even) .roadmap-date {
      transform: translateY(calc(-100% - 25px / 2));
    }
  }
  @media (max-width: 1200px) {
    .roadmap-timeframe:nth-child(even) .roadmap-date {
      justify-content: flex-end;
      transform: translate(-100%, -50%);
      top: 50%;
    }
  }
  @media (min-width: 1201px) {
    .roadmap-timeframe:nth-child(even) .roadmap-events {
      padding: 150px calc(15vw - 200px) 0 0;
    }
  }
  @media (max-width: 1200px) {
    .roadmap-timeframe:nth-child(even) .roadmap-events {
      padding: 0 25px 150px 10vw;
    }
  }
  @media (min-width: 1201px) {
    .roadmap-timeframe:nth-child(even) .roadmap-events::before {
      top: -5px;
      bottom: auto;
    }
  }
  @media (min-width: 1201px) {
    .roadmap-timeframe:nth-child(even) .roadmap-events::after {
      top: -5px;
      bottom: auto;
    }
  }
  @media (max-width: 1200px) {
    .roadmap-timeframe:nth-child(even) .roadmap-events::after {
      left: -5px;
    }
  }
  @media (max-width: 1200px) {
    .roadmap-timeframe:nth-child(even) .roadmap-event {
      text-align: right;
      justify-content: flex-end;
    }
  }
  @media (min-width: 1201px) {
    .roadmap-timeframe:nth-child(even) .roadmap-event:first-child {
      padding-top: 0;
    }
  }
  @media (min-width: 1201px) {
    .roadmap-timeframe:nth-child(even) .roadmap-event:first-child .roadmap-vline::after {
      top: calc( 50% + 14px / 2 + 10px - 10px );
    }
  }
  @media (min-width: 1201px) {
    .roadmap-timeframe:nth-child(even) .roadmap-event:last-child {
      padding-bottom: 20px;
    }
  }
  @media (min-width: 1201px) {
    .roadmap-timeframe:nth-child(even) .roadmap-event:last-child .roadmap-vline::before {
      bottom: calc( 50% + 14px / 2 + 10px );
    }
  }
  @media (max-width: 1200px) {
    .roadmap-timeframe:nth-child(even) .roadmap-event::before {
      order: 2;
      margin: 0 0 0 20px;
    }
  }
  @media (min-width: 1201px) {
    .roadmap-timeframe:nth-child(even) .roadmap-swirly {
      transform: rotateX(180deg);
      bottom: auto;
      top: 30px;
    }
  }
  @media (max-width: 1200px) {
    .roadmap-timeframe:nth-child(even) .roadmap-swirly {
      transform: rotateY(180deg);
      height: 145px;
      bottom: 0;
      top: auto;
      left: auto;
      right: calc(-6% + 36px);
      width: calc(106% - 64px);
    }
  }
  @media (max-width: 1200px) {
    .roadmap-timeframe:nth-child(even) .roadmap-vline::before, .roadmap-timeframe:nth-child(even) .roadmap-vline::after {
      left: auto;
      right: 5px;
    }
  }
  .roadmap-swirly {
    position: absolute;
  }
  @media (min-width: 1201px) {
    .roadmap-swirly {
      height: 110px;
      bottom: 30px;
      left: calc(-3% + 7px);
      width: calc(53% - 5px);
    }
  }
  @media (max-width: 1200px) {
    .roadmap-swirly {
      height: 145px;
      bottom: 0;
      left: calc(-6% + 36px);
      width: calc(106% - 64px);
    }
  }
  .roadmap-swirly path {
    stroke-width: 2px;
    stroke: #0cc0ed;
    fill-opacity: 0;
    /*vector-effect: non-scaling-stroke;*/
    stroke-dashoffset: 0;
    stroke-dasharray: 20;
    animation: strokeoffset 55s linear infinite;
  }
  .roadmap-swirly path:nth-of-type(1) {
    stroke-dasharray: 0;
    animation: none;
  }
  .roadmap-swirly path:nth-of-type(2) {
    stroke: rgb(230, 118, 5);
  }
  .roadmap-date {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 60px;
    text-align: center;
    text-transform: uppercase;
    color: #00ffd0;
  }
  @media (min-width: 1201px) {
    .roadmap-date {
      bottom: 0;
      transform: translateY(calc(100% + 25px / 2));
      font-size: 18px;
    }
  }
  @media (max-width: 1200px) {
    .roadmap-date {
      transform: translate(100%, -50%);
      justify-content: flex-start;
      padding: 0 30px;
      top: 50%;
      font-size: 19px;
    }
  }
  .roadmap-events {
    position: relative;
    padding-bottom: 150px;
    list-style: none;
  }
  @media (min-width: 1201px) {
    .roadmap-events {
      padding-right: calc(15vw - 200px);
    }
  }
  @media (max-width: 1200px) {
    .roadmap-events {
      position: relative;
      padding-bottom: 150px;
      list-style: none;
      padding-left: 25px;
      padding-right: 10vw;
    }
  }
  @media (min-width: 1201px) {
    .roadmap-events::before {
      content: "";
      position: absolute;
      background: #fff;
      height: 10px;
      left: 0;
      right: calc(50% + 42.5px);
      bottom: -5px;
    }
  }
  .roadmap-events::after {
    content: "";
    position: absolute;
    background: rgb(230, 118, 5);
  }
  @media (min-width: 1201px) {
    .roadmap-events::after {
      height: 10px;
      left: calc(50% + 42.5px);
      right: 0;
      bottom: -5px;
    }
  }
  @media (max-width: 1200px) {
    .roadmap-events::after {
      top: 42.5px;
      bottom: 42.5px;
      right: -5px;
      width: 10px;
    }
  }
  .roadmap-event {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 20px 0;
  }
  .roadmap-event::before {
    content: "";
    flex-shrink: 0;
    left: 0px;
    margin-right: 10px;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    background: #717170;
  }
  .roadmap-event:first-child .roadmap-vline::before {
    content: none;
  }
  .roadmap-event:last-child {
    padding-bottom: 0px;
  }
  .roadmap-event:last-child .roadmap-vline::before {
    bottom: calc( 50% + 14px / 2 + 10px - 10px );
  }
  .roadmap-event:last-child .roadmap-vline::after {
    content: none;
  }
  .roadmap-vline {
    position: absolute;
    top: 0;
    bottom: 0;
  }
  .roadmap-vline::before, .roadmap-vline::after {
    content: "";
    position: absolute;
    left: 5px;
    width: 4px;
    background: rgb(255, 255, 255);
  }
  .roadmap-vline::before {
    top: 0;
    bottom: calc(50% + 14px / 2 + 10px);
  }
  .roadmap-vline::after {
    top: calc(50% + 14px / 2 + 10px);
    bottom: 0;
  }

  



  @import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");
*,
*:after,
*:before {
  box-sizing: border-box;
}

:root {
  --color-text-primary: #623ce6;
  --color-text-secondary: #000000;
  --color-text-alert: #d72641;
  --color-text-icon: #000000;
  --color-bg-primary: #fff;
  --color-bg-secondary: #f3f5f9;
  --color-bg-alert: #fdeaec;
  --color-theme-primary: #623ce6;
}

button,
input,
select,
textarea {
  font: inherit;
}

img {
  display: block;
}

strong {
  font-weight: 600;
}

body {
  font-family: "Rubik", sans-serif;
  line-height: 1.5;
  color: var(--color-text-primary);
  background-color: var(--color-bg-secondary);
}
.bto{
  background-color: orange; /* Green */
  border: none;
  color: rgb(0, 0, 0);
  padding: 13px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  margin: 4px 2px;
  cursor: pointer;
  width:250px;
}
.match {
  background-color: var(--color-bg-primary);
  display: flex;
  flex-direction: column;
  min-width: 400px;
  border-radius: 10px;
  box-shadow: 0 0 2px 0 rgba(48, 48, 48, 0.1), 0 4px 4px 0 rgba(48, 48, 48, 0.1);
}

.match-header {
  display: flex;
  border-bottom: 2px solid rgba(48, 48, 48, 0.1);
  padding: 16px;
}

.match-status {
  background-color: var(--color-bg-alert);
  color: var(--color-text-alert);
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  line-height: 1;
  margin-right: auto;
}
.match-status:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: currentColor;
  border-radius: 50%;
  margin-right: 8px;
}

.match-tournament {
  display: flex;
  align-items: center;
  font-weight: 600;
}
.match-tournament img {
  width: 20px;
  margin-right: 12px;
}

.match-actions {
  display: flex;
  margin-left: auto;
}

.btn-icon {
  border: 0;
  background-color: transparent;
  color: var(--color-text-icon);
  display: flex;
  align-items: center;
  justify-content: center;
}

.match-content {
  display: flex;
  position: relative;
}

.column {
  padding: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% / 3);
}
.htc{
    width: 70%;
}
.team {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-logo {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--color-bg-primary);
  box-shadow: 0 4px 4px 0 rgba(48, 48, 48, 0.15), 0 0 0 15px var(--color-bg-secondary);
}
.team-logo img {
  width: 120px;
  border-radius: 50%;
}

.team-name {
  text-align: center;
  margin-top: 24px;
  font-size: 20px;
  font-weight: 600;
}

.match-details {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.match-date, .match-referee {
  font-size: 17px;
  color: var(--color-text-secondary);
}
.match-date strong, .match-referee strong {
  color: var(--color-text-primary);
}

.match-score {
  margin-top: 12px;
  display: flex;
  align-items: center;
}

.match-score-number {
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
}
.match-score-number--leading {
  color: var(--color-theme-primary);
}

.match-score-divider {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-text-icon);
  margin-left: 10px;
  margin-right: 10px;
}

.match-time-lapsed {
  color: #DF9443;
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
}

.match-referee {
  margin-top: 12px;
}

.match-bet-options {
  display: flex;
  margin-top: 8px;
  padding-bottom: 12px;
}

.match-bet-option {
  margin-left: 4px;
  margin-right: 4px;
  border: 1px solid var(--color-text-icon);
  background-color: #F9f9f9;
  border-radius: 2px;
  color: var(--color-text-secondary);
  font-size: 14px;
  font-weight: 600;
  padding: 4px 8px;
}

.match-bet-place {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  border: 0;
  background-color: var(--color-theme-primary);
  border-radius: 6px;
  padding: 10px 48px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 4px 8px 0 rgba(48, 48, 48, 0.25);
}

.container {

  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
















@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,700);

body {
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  line-height: 1.42em;
  color:#A7A1AE;
  background-color:#1F2739;
}



.blue { color: #185875; }
.yellow { color: #FFF842; }

.container1 th h1 {
	  font-weight: bold;
	  font-size: 1em;
  text-align: left;
  color: #d04407;
}

.container1 td {
	  font-weight: normal;
	  font-size: 1em;
  -webkit-box-shadow: 0 2px 2px -2px #0E1119;
	   -moz-box-shadow: 0 2px 2px -2px #0E1119;
	        box-shadow: 0 2px 2px -2px #0E1119;
}

.container1 {
	  text-align: left;
	  overflow: hidden;
	  width: 80%;
	  margin: 0 auto;
  display: table;
  padding: 0 0 8em 0;
}

.container1 td, .container1 th {
	  padding-bottom: 2%;
	  padding-top: 2%;
  padding-left:2%;  
}

/* Background-color of the odd rows */
.container1 tr:nth-child(odd) {
	  background-color: #323C50;
}

/* Background-color of the even rows */
.container1 tr:nth-child(even) {
	  background-color: #2C3446;
}

.container1 th {
	  background-color: #1F2739;
}

.container1 td:first-child { color: #fbe066; }

.container1 tr:hover {
   background-color: #464A52;
-webkit-box-shadow: 0 6px 6px -6px #0E1119;
	   -moz-box-shadow: 0 6px 6px -6px #0E1119;
	        box-shadow: 0 6px 6px -6px #0E1119;
}

.container1 td:hover {
  background-color: #FFF842;
  color: #403E10;
  font-weight: bold;
  
  box-shadow: #7F7C21 -1px 1px, #7F7C21 -2px 2px, #7F7C21 -3px 3px, #7F7C21 -4px 4px, #7F7C21 -5px 5px, #7F7C21 -6px 6px;
  transform: translate3d(6px, -6px, 0);
  
  transition-delay: 0s;
	  transition-duration: 0.4s;
	  transition-property: all;
  transition-timing-function: line;
}

@media (max-width: 800px) {
.container1 td:nth-child(4),
.container1 th:nth-child(4) { display: none; }
}













a {
  text-decoration: none;
}

h1 {
  text-align: center;
  font-family: "Rubik", sans-serif;
  font-size: 25px;
  line-height: 32px;
  padding-top: 0px;
}
h1 a {
  color: #f3eb09;
}

.price-table-wrapper {
  font-family: "Rubik", sans-serif;
  text-align: center;
  margin-top: 30px;
}
.price-table-wrapper .featured-table {
  box-shadow: 0px 0px 19px -3px rgba(0, 0, 0, 0.36);
}
.price-table-wrapper .pricing-table {
  display: inline-block;
  border: 1px solid #C8C8C8;
  border-radius: 10px;
  background: white;
  margin: 20px;
  transition: all 0.3s ease-in-out;
}
.price-table-wrapper .pricing-table__header {
  padding: 20px;
  font-size: 20px;
  color: #909090;
  background: #E0E0E0;
}
.price-table-wrapper .pricing-table__price {
  color: #000000;
  padding: 20px;
  margin: auto;
  font-size: 40px;
  font-weight: 500;
}
.price-table-wrapper .pricing-table__button {
  display: block;
  background: #7d08b8;
  text-decoration: none;
  padding: 20px;
  color: white;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.price-table-wrapper .pricing-table__button:before {
  position: absolute;
  left: -20%;
  top: -10%;
  content: "";
  width: 60%;
  height: 220%;
  transform: rotate(-30deg);
  background: white;
  opacity: 0.3;
  transition: all 0.3s ease-in-out;
}
.price-table-wrapper .pricing-table__button:after {
  position: absolute;
  content: ">";
  top: 0;
  right: 0;
  font-size: 25px;
  padding: 15px;
  padding-right: 40px;
  color: white;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.price-table-wrapper .pricing-table__button:hover {
  background: black;
}
.price-table-wrapper .pricing-table__list {
  padding: 20px;
  color: #A0A0A0;
}
.price-table-wrapper .pricing-table__list li {
  padding: 15px;
  border-bottom: 1px solid #C8C8C8;
  text-align: start;
  direction: rtl;
}
.price-table-wrapper .pricing-table__list li:last-child {
  border: none;
}
.price-table-wrapper .pricing-table:hover {
  box-shadow: 0px 0px 19px -3px rgba(0, 0, 0, 0.36);
}
.price-table-wrapper .pricing-table:hover .pricing-table__button {
  padding-left: 0;
  padding-right: 35px;
}
.price-table-wrapper .pricing-table:hover .pricing-table__button:before {
  top: -80%;
  transform: rotate(0deg);
  width: 100%;
}
.price-table-wrapper .pricing-table:hover .pricing-table__button:after {
  opacity: 1;
  padding-right: 15px;
}





#mainContent {
  display: flex;
  border: thin rgb(255, 255, 255) solid;
  padding: 10px;
  width: 70%;
  margin: 10px auto;
}
#tutVidTitle {
  font-family: "Rubik", arial, sans-serif;
  font-weight: 100;
  background: #7125d4;
  color: #ffffff;
  padding: 5px;
  margin-top: 4px;
}
#videoSizer {
  flex: 2;
  width: 100%;
}
#videoWrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}
iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
#videoList {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 15px;
  background: linear-gradient(90deg, rgba(200,116,255,1) 0%, rgba(80,7,129,1) 0%, rgba(104,28,154,1) 29%, rgba(162,70,223,1) 71%, rgba(200,116,255,1) 100%);
  margin: 0 5px;
  align-items: center;
}
#videoList a {
  text-decoration: none;
  font-family: "Rubik", arial, sans-serif;
  color: black;
  display: block;
  padding: 10px;
  background: #ffffff;
  margin: 4px;
  width: 100%;
  transition: .4s;
  border: 1px white solid;
}
#videoList a:hover, #videoList a:active {
  color: #ffffff;
  background: rgb(65, 6, 121);
  border: 1px rgb(65, 6, 121) solid;
  text-shadow: .5px .5px black;
}
input:checked ~ a {
  color: #fff;
  background: #cccccc;
  border: 1px black solid;
  text-shadow: .5px .5px black;
}

@media screen and (max-width: 800px) {
  #mainContent {
    flex-direction: column;
  }
  #videoList {
    padding-top: 20px;
    margin: 5px 0;
  }
}


@media screen and (max-width: 390px) {
  .redblue{
    width: 100%;
  }
}
@media screen and (max-width: 420px) {
  .redblue{
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .redblue{
    width: 100%;
  }
}

::selection {
  color: rgb(0, 0, 0);
  background: rgb(2, 255, 171);
}



  /* تغيير عرض شريط التمرير */
  ::-webkit-scrollbar {
    width: 12px;
  }
  
  /* تغيير لون الخلفية لشريط التمرير */
  ::-webkit-scrollbar-track {
    background: #333;
  }
  
  /* تغيير لون مقبض شريط التمرير */
  ::-webkit-scrollbar-thumb {
    background-color: #bd6a0b;
    border-radius: 6px;
    border: 2px solid #333;
  }
  
  /* تأثير عند التحريك على مقبض شريط التمرير */
  ::-webkit-scrollbar-thumb:hover {
    background-color: #d36206;
    cursor: pointer;
  }