

:root {
  --background-color: #232325;
  --tile-color: #e3e3e3;
  --marca-color: #FBA007;
  --color-bg-calendar: #1b1e22;
  --color-cell: #e3e3e3;
  --color-cell-disabled: #424649;
}

*, *:before, *:after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    background-color: #232325;
}


.root {
    padding: 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.calendar {
    padding: 20px 10px;
    background-color: #232325;
    border-radius: 3px;
    width: 100%;
    max-width: 300px;
    font-family: sans-serif;
    box-shadow: 0 0 10px #fba007ab;
    border-radius: 16px;
    border: 2px solid #fba007ad;
    border-color: #FBA007;
}

.calendar__header {
    color: #FBA007;
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.calendar .control {
    color: white;
    font-weight: bold;
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0 5px;
}

.grid__header, .grid__body {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.grid__header {
    color: white;
    margin-bottom: 20px;
}

.grid__body {
    grid-auto-rows: 40px;
    color: var(--color-cell);
}

.grid__cell {
    display: flex;
    justify-content: center;
    align-items: center;
}

.grid__cell--gd {
    cursor: pointer;
}

.grid__cell--selected {
    color: var(--color-bg-calendar);
    background-color: #FBA007;
    border-radius: 50%;
    border: 2px solid #FBA007;
    box-shadow: 0 0 0 2px var(--color-bg-calendar) inset;
}

.grid__cell--disabled {
    color: var(--color-cell-disabled);
    cursor: not-allowed;
}







/* Estilos para el contenedor que tiene scroll */
body::-webkit-scrollbar {
    width: 12px;               /* width of the entire scrollbar */
  }
  
  body::-webkit-scrollbar-track {
    background: var(--background-color-color);        /* color of the tracking area */
  }
  
  body::-webkit-scrollbar-thumb {
    background-color: #fba10777;    /* color of the scroll thumb */
    border-radius: 20px;       /* roundness of the scroll thumb */
    border: 3px solid rgba(255, 166, 0, 0.404);  /* creates padding around scroll thumb */
  }
  body::-webkit-scrollbar-thumb:hover {
    background-color: var(--marca-color);    /* color of the scroll thumb */
    border-radius: 20px;       /* roundness of the scroll thumb */
    border: 3px solid rgba(255, 166, 0, 0.404);  /* creates padding around scroll thumb */
  }




