        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        :root{
            --black:#222;
            --white-smoke:#ebefef;
            --steel-blue:#0b79fb;
            --steel-blue-2:#2683ab;
            --deep-sky-blue:#2e9dcc;
            --sweat-purple:#c191e7;
            --green-yellow:#ccff7d;
            --dark-cyan:#2e8e83;
          
            --nagivioleta: #4b59ed;
            --nagiobispo: #b18cfe;
            --nagimagenta: #af14af;
            --nagirosa: #fac8f8;
          
          }

          
@font-face {
    font-family: "Monument Extended Regular";
    src: url("../src/fonts/MonumentExtended\ Regular/MonumentExtended-Regular.otf") format("truetype");
  }
  @font-face {
    font-family: "Gotham Medium Regular";
    src: url("../src/fonts/Gotham\ Medium.otf") format("truetype");
  }
  .customfont { 
    font-family: "Gotham Medium Regular";
  }
  .titlefont{
    font-family: "Monument Extended Regular";
  }

        .no-scrollbar {
            -ms-overflow-style: none;
            overflow: -moz-scrollbars-none; 
        }
        
        .no-scrollbar::-webkit-scrollbar {
            display: none;
        }
        header {
            width: 100%;
            background-color: var(--nagivioleta);
            color: white;
            position: fixed;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .header-logo {
            display: flex;
            align-items: center;
        }
        .header-logo img {
            height: 50px;
            margin-top: 5px;
            padding: 10px;
        }
        .header-right {
            display: flex;
            align-items: center;
            position: relative;
        }
        .header-right input[type="text"] {
            padding: 10px;
            outline: none;
            margin-right: 25px;
            border-radius: 20px;
            border: none;
            display: none; /* Initially hidden */
        }
        .header-right input[type="text"].visible {
            display: block;
        }
        #user-info{
            display: flex;
            align-items: center;
        }
        .image-preview {
            width: 40px;
            height: 40px;
            object-fit: cover;
            margin-right: 10px;
            border-radius: 3px;
            display: none; /* Hidden by default */
            cursor: pointer;
        }
        #g-signin-button{
            margin-right: 25px;
        }
        
        .header-right button {
            margin-right: 2vw;
            padding: .8rem 1.25rem;
            background-color: var(--nagiobispo);
            color: var(--white-smoke);
            border: 1px #000;
            border-radius: .25rem;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .header-right button:hover {
            background-color: #ddd;
        }
        .container {
            margin-top: 80px;
            flex-grow: 1;
            display: flex;
            width: 100%;
        }
        .left-panel {
            position: fixed;
            width: 14vw;
            margin-top: 1vh;
        }
        .left-panel button {
            width: 90%;
            padding: 1.5vh;
            margin: 1vh 0 1vh 2vh;
            border: none;
            background-color: #bf7ec5;
            color: rgb(44, 39, 39);
            cursor: pointer;
            /* transition: background-color 0.3s; */
            border-radius: 25px;
        }
        .left-panel button:hover {
            background-color: #2a0833;
            color: white;
        }
        .main-content {
            margin-top: 2vh;
            margin-left: 15vw;
            margin-right: 2vh;
            flex-grow: 1;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            background: linear-gradient(0.25turn, #111111, #26152e, #524257, #382142, #0f0f0f);
        }

        .img-clases:hover{
            border-radius: 100%;
            scale: 1.2;
        }
        
        .welcome-section {
                margin-bottom: 20px;
                text-align: center;
                color: #f0eff1;
                background: #ffffff21;
                width: 100%;
                border: solid 1.8px #4d4a509e;
                border-radius: 20px;           
        }

#welcome-message {
    margin-right: 20px;
}

#user-info {
    margin-left: 20px;
}

#g-signin-button {
    margin-left: auto;
}

#logout-button {
    margin-left: 20px;
}
        .image-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(3, 1fr);
            gap: 6vw;
            width: 100vw;
            max-width: 800px;
        }
        .image-grid div {
            margin-top: 10px;
                border-radius: 54px;
    background-color: #ff54ae78;
    width: 100%;
    padding-bottom: 100%;
    position: relative;
        }
        .image-grid div img {
                border-radius: 20px;
    position: absolute;
    border: solid 2px #ffffffa8;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
        }

        .content-section {
            display: none;
            text-align: center;
            color: #ddd;
        }
        .content-section.active {
            display: block;
        }

.calendar-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.menu {
    display: flex;
    background-color: #333;
    padding: 10px;
}

.menu button {
    color: white;
    background-color: #555;
    border: none;
    padding: 10px 20px;
    margin: 0 5px;
    cursor: pointer;
}

.menu button:hover {
    background-color: #777;
}

.content {
    flex: 1;
    display: flex;
}

.section {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.fixed-calendar {
    width: 100%;
    border-collapse: collapse;
}

.fixed-calendar th, .fixed-calendar td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.fixed-calendar th {
    background-color: #f4f4f4;
}


        @media (max-width: 768px) {
            .main-content{
                margin-top: 1vh;
                margin-left: 30vw;
                margin-right: 1vh;
                flex-grow: 1;
                padding: 20px;
                display: flex;
                flex-direction: column;
                align-items: center;
                background: linear-gradient(0.25turn, #111111, #26152e, #524257, #382142, #0f0f0f);
            }

            .image-grid {
                display: grid;
            grid-template-columns: repeat(1, 1fr);
            grid-template-rows: repeat(3, 1fr);
            gap: 8vh;
            width: 23vh;
            max-width: 800px;
            }
            .left-panel {
                position: fixed;
                width: 12vh;
                margin-top: 1vh;
            }
            .left-panel button {
                font-size: 1.4vh;
            }
            
        }




       
