@import url("https://fonts.googleapis.com/css2?family=Orbitron&display=swap");

body {
    font-family: "Orbitron", sans-serif;
    background-color: #0a0a0a;
    color: #0ff;
    text-align: center;
    margin: 0;
    padding: 0;
}

.ai-prompt-container {
    margin: 20px auto;
    padding: 10px;
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.ai-prompt-container input {
    width: 70%;
    padding: 10px;
    border: 2px solid #0ff;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.8);
    color: #0ff;
    font-family: "Orbitron", sans-serif;
}

.ai-prompt-container button {
    padding: 10px 20px;
    border: 2px solid #0ff;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.8);
    color: #0ff;
    font-family: "Orbitron", sans-serif;
    cursor: pointer;
}

.ai-prompt-container button:hover {
    background: #ff00ff;
    color: #000;
}

.calendar-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    border: 2px solid #0ff;
    border-radius: 10px;
    box-shadow: 0px 0px 15px #0ff;
    background: rgba(0, 0, 0, 0.8);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 24px;
    color: #ff00ff;
    padding-bottom: 10px;
    border-bottom: 2px solid #0ff;
}

.calendar-header button {
    background: none;
    border: none;
    color: #0ff;
    font-size: 20px;
    cursor: pointer;
}

.calendar-header button:hover {
    color: #ff00ff;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-top: 10px;
}

.day {
    position: relative;
    padding: 15px;
    border: 1px solid #0ff;
    text-align: center;
    font-size: 18px;
    transition: 0.3s;
}

.day:hover {
    background: #ff00ff;
    color: #000;
    cursor: pointer;
}

.today {
    background: #0ff;
    color: #000;
    font-weight: bold;
    box-shadow: 0px 0px 10px #0ff;
}

.tooltip {
    visibility: hidden;
    width: 200px;
    background-color: #0ff;
    color: #000;
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #0ff transparent transparent transparent;
}

.day:hover .tooltip {
    visibility: visible;
    opacity: 1;
}
.waiting-screen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: #0ff;
    font-family: "Orbitron", sans-serif;
    text-align: center;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.waiting-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.waiting-emoji {
    font-size: 50px;
}
