body {
    display: block;
    background-color: #141414;
    min-width: 100dvw;
    min-height: 100dvh;
    margin: 0;
    border: 0;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

* {
    color: #fff;
    box-sizing: border-box;
}

input {
    color: #000;
}

input[type="date"] {
    background-color: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    color: #fff;
    outline: none;
    transition: all 0.3s ease;
    margin-top: -280px;
    cursor: pointer;
}

input[type="date"]:hover {
    border-color: #4a4a4a;
}

input[type="date"]:focus {
    border-color: #666;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

#result {
    text-align: center;
    line-height: 125%;
}

.pregnant-woman {
    width: 280px;
    height: 280px;
    position: fixed;
    bottom: calc(0dvh + 32px);
    left: 50%;
    transform: translate(-50%, 0);
}