/* Global Styles */

:root {
  /* GLOBAL STYLES */

  /* TRUE GROUP STYLES */
  --primary_main: #d1b103;
  --primary_light: #ffef9d;
  --primary_dark: #17262b;
  --primary_button1: #ffef9d;
  --primary_button2: #d1b103;
  --primary_thirdColor: #17262b;

  /* REST STYLES */

  --transparent_04: rgba(255, 255, 255, 0.4);
  --application_background: #ffff;
}

html,
body,
#root,
.app,
.content {
  width: 100%;
  height: 100%;
  font-family: "Source Sans Pro", sans-serif;
  background: var(--application_background); /* fallback for old browsers */
}
.app {
  display: flex;
  position: relative;
}
.InputFontSize {
  font-size: 16px;
}

/* NAVIGATION BAR*/
.NavigationBar {
  background-color: var(--application_background) !important;
  box-shadow: none !important;
  border: 0px;
}

/* GLASS */
.GlassEffect {
  background: var(--transparent_04);
  border-radius: 5px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.GlassEffectButton {
  background: var(--transparent_04);
  background: linear-gradient(
    175deg,
    rgba(255, 255, 255, 0.75) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 5px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.ButtonLine {
  background: linear-gradient(
    to right,
    var(--primary_main),
    var(--primary_light)
  );
}
.GlassEffectModal {
  background: var(--transparent_04);
  background: linear-gradient(
    175deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  border-radius: 5px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  
}
.GlassDrawer {
  background: var(--transparent_04);
  background: linear-gradient(
    175deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.95) 100%
  );
  border-radius: 5px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.GlassEffectSmallIcons {
  background: var(--primary_main);
  border-radius: 5px;

  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.GlassEffectSmallBoxes {
  background: var(--transparent_04);
  background: linear-gradient(
    175deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(174, 201, 206, 0.5) 100%
  );
  border-radius: 5px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  margin-bottom: 8px !important;
  z-index: 100;
}

/* BUTTONS */
.ButtonsForSelection {
  background: var(--transparent_04);
  background: linear-gradient(305deg, #fff 2%, rgba(255, 255, 255, 0) 100%);
  color: var(--primary_dark);
}
.Button_Primary {
  background-color: var(--primary_dark);
}

.GradientButton {
  background: linear-gradient(
    100deg,
    var(--primary_button1) 2%,
    var(--primary_button2) 63%
  );
  color: var(--primary_dark);
}

/* TEXTS */
.Primary_Main_Text {
  color: var(--primary_main) !important;
}
.Primary_Light_Text {
  color: var(--primary_light) !important;
}

/* BACKGROUND */
.Primary_Main_Background {
  background-color: var(--primary_main) !important;
}
.Primary_Light_Background {
  background-color: var(--primary_light) !important;
}
.Primary_Dark_Background {
  background-color: var(--primary_dark) !important;
}
.Primary_Third_Background {
  background-color: var(--primary_thirdColor) !important;
}

/* CARDS */
.Small_Card_Cancel {
  background-color: rgba(255, 0, 0, 1);
}
.Small_Card_Searching {
  background-color: rgba(120, 0, 255, 1);
}
.Small_Card_NoTaxi {
  background-color: rgba(0, 0, 0, 1);
}
.Small_Card_Found {
  background-color: rgba(60, 200, 0, 1);
}

/* OLD UI STYLES*/

.taxi-block {
  width: 180px;
  height: 150px;
  border-radius: 8px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
  margin: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s ease-in-out;
  backdrop-filter: blur(8px);
  padding: 10px 5px;
}

.taxi-block-background {
  background-color: rgba(255, 255, 255, 0.5);
  background: linear-gradient(
    to right,
    var(--primary_main),
    var(--primary_light)
  );
}

.taxi-block:hover {
  transform: scale(1.05);
}

.taxi-destination {
  /* font-size: 24px; */
  font-weight: bold;
  margin-bottom: 3px;
  text-align: center;
  line-height: 17px;
}
.taxi-destination-appointment {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 3px;
  text-align: center;
  line-height: 17px;
  margin-top: 3px;
}

.taxi-price {
  /* font-size: 18px; */
  font-weight: 600;
  color: var(--primary_dark);
  margin-bottom: 3px;
}
.taxi-price-appointment {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary_dark);
}
.type-block {
  width: 120px;
  height: 100px;
  border-radius: 8px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
  margin: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s ease-in-out;
  backdrop-filter: blur(8px);
  padding: 10px 5px;
}

/*TABLE*/
.table-container {
  width: 100% !important;
  overflow-x: auto;
  margin: 2rem 0;
}

.table-container {
  width: 100%;
  overflow-x: auto;
  margin: 2rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

th,
td {
  padding: 5px;
  text-align: left;
}

th {
  color: gray;
  text-align: center;
  font-weight: bold;
}

/* Hide dropdown selection icon */
.css-1okebmr-indicatorSeparator {
  display: none !important;
}
.css-tlfecz-indicatorContainer {
  display: none !important;
}
.css-1gtu0rj-indicatorContainer {
  display: none !important;
}
.css-yk16xz-control {
  z-index: 100;
}

/* FieldSet */
.TextField-without-border-radius fieldset {
  border-radius: 20;
}

/* Borders */
.BorderColor {
  border-color: var(--primary_main);
}

.ResponsiveBanner {
  display: block;
}

.ShowBanner {
  display: none;
}

@media only screen and (max-width: 600px) {
  .taxi-block {
    width: 150px;
    height: 120px;
    margin: 10px;
  }
  .type-block {
    width: 100px;
    height: 80px;
    border-radius: 8px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
    margin: 2px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s ease-in-out;
    backdrop-filter: blur(8px);
    padding: 5px 2px;
  }
  .ResponsiveBanner {
    display: none !important;
  }

  .ShowBanner {
    display: block !important;
  }
}

@media only screen and (max-width: 600px) {
  .hideBigTable {
    display: none;
  }
}
@media only screen and (min-width: 601px) {
  .showSmallTable {
    display: none;
  }
}
