body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: #fff;
    background-color: #000000;
}

spline-viewer{
    margin-top: 60px;
    height: 100vh;
    width: 100%;
}

.container {
    text-align: center;
    position: absolute;
    top: 0;
    border-radius: 10px;
    z-index: 1;
}

h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

h1 span {
    color: #87109c;
}

.input-box {
    position: relative;
    display: inline-block;
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.input-box input[type="date"] {
    padding: 10px 15px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    position: relative;
    width: calc(100% - 40px); /* Adjust width to accommodate button */
}

.input-box input::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: auto;
    height: auto;
    background-position: calc(100% - 10px);
    background-size: 30px;
    cursor: pointer;
}

.input-box button {
    padding: 10px 20px;
    font-size: 1em;
    font-weight: 600;
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.input-box button:hover {
    color: #fff;
    background-color: #87109c;
    transition: 0.2s ease-in-out;
}

p{
    font-size: 17px;
    
}

p span{
    color: #87109c;
    font-weight: 700;
}
