.pdc-wrapper {
    max-width: 900px;
    margin: 0px auto;
    padding: 10px 0px;
    border-radius: 20px;
    text-align: center;
    color: #db1d80;
}

.pdc-wrapper label {
    display: block;
    margin-bottom: 12px;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
}

#pdcDate {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #c18fa2;
    background: #fff;
    color: #333;
    font-size: 16px;
    margin-bottom: 0px;
    box-sizing: border-box;
}

.pdc-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 280px;
	margin-top: 32px;
}
#pdcForm .form-control {
    display: block;
    text-align: left;
    margin-bottom: 0;
}
.pdc-buttons button {
    padding: 12px 28px;
    border: none;
    border-radius: 10px;
    background: #db1d80;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease;
}

.pdc-buttons button:hover {
    background: #c18fa2;
}
form#pdcForm {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 20px;
}
#pdcClear {
    background: #c18fa2;
	border-radius: 10px;
}

#pdcClear:hover {
    background: #db1d80;
}

.pdc-result {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.pdc-box {
    text-align: center;
}

.pdc-box span {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 6px dotted rgba(219, 29, 128, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    position: relative;
    background: rgba(193, 143, 162, 0.08);
    font-size: 52px;
    font-weight: 300;
    color: #db1d80;
    text-shadow: 0 0 12px rgba(219, 29, 128, 0.4);
}

.pdc-box span::before {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    border: 3px solid #c18fa2;
    opacity: 0.25;
}

.pdc-box label {
    font-size: 22px;
    letter-spacing: 2px;
    color: #c18fa2;
    font-weight: 500;
}

.pdc-due-date {
    margin-top: 20px;
    font-size: 28px;
    color: #c18fa2;
    font-weight: 500;
}

#pdcDueDate {
    display: block;
    margin-top: 10px;
    font-size: 36px;
    color: #db1d80;
}

.pdc-message {
    margin-top: 20px;
    font-size: 22px;
    color: #c18fa2;
    font-weight: 600;
}

.flatpickr-calendar {
    border-radius: 12px;
    overflow: hidden;
}

@media (max-width: 768px) {

    .pdc-result {
        gap: 25px;
    }

    .pdc-box span {
        width: 120px;
        height: 120px;
        font-size: 40px;
    }
	form#pdcForm {
		display: block !important;
	}
	.pdc-buttons {
		display: flex;
		gap: 20px;
		justify-content: center;
		flex-wrap: wrap;
		width: 100%;
		margin-top: 32px;
	}

    .pdc-box label {
        font-size: 18px;
    }

    .pdc-due-date {
        font-size: 22px;
    }

    #pdcDueDate {
        font-size: 28px;
    }
}