/* the div that holds the date picker calendar */
.dpDiv {
	}


/* the table (within the div) that holds the date picker calendar */
.dpTable {
	font-family: Tahoma, Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-align: center;
	color: #505050;
	background-color: #ece9d8;
	border: 1px solid #AAAAAA;
	}


/* a table row that holds date numbers (either blank or 1-31) */
.dpTR {
	}


/* the top table row that holds the month, year, and forward/backward buttons */
.dpTitleTR {
	}


/* the second table row, that holds the names of days of the week (Mo, Tu, We, etc.) */
.dpDayTR {
	}


/* the bottom table row, that has the "This Month" and "Close" buttons */
.dpTodayButtonTR {
	}


/* a table cell that holds a date number (either blank or 1-31) */
.dpTD {
	border: 1px solid #ece9d8;
	}


/* a table cell that holds a highlighted day (usually either today's date or the current date field value) */
.dpDayHighlightTD {
	background-color: #CCCCCC;
	border: 1px solid #AAAAAA;
	}


/* the date number table cell that the mouse pointer is currently over (you can use contrasting colors to make it apparent which cell is being hovered over) */
.dpTDHover {
	background-color: #aca998;
	border: 1px solid #888888;
	cursor: pointer;
	color: red;
	}


/* the table cell that holds the name of the month and the year */
.dpTitleTD {
	}


/* a table cell that holds one of the forward/backward buttons */
.dpButtonTD {
	}


/* the table cell that holds the "This Month" or "Close" button at the bottom */
.dpTodayButtonTD {
	}


/* a table cell that holds the names of days of the week (Mo, Tu, We, etc.) */
.dpDayTD {
	background-color: #CCCCCC;
	border: 1px solid #AAAAAA;
	color: white;
	}


/* additional style information for the text that indicates the month and year */
.dpTitleText {
	font-size: 12px;
	color: gray;
	font-weight: bold;
	}


/* additional style information for the cell that holds a highlighted day (usually either today's date or the current date field value) */ 
.dpDayHighlight {
	color: 4060ff;
	font-weight: bold;
	}


/* the forward/backward buttons at the top */
.dpButton {
	font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: gray;
	background: #d8e8ff;
	font-weight: bold;
	padding: 0px;
	}


/* the "This Month" and "Close" buttons at the bottom */
.dpTodayButton {
	font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: gray;
	background: #d8e8ff;
	font-weight: bold;
	}
	
	/* ===== BBD PREMIUM DATEPICKER ===== */

.dpDiv {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(14px);
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.08);
}

/* TABLE */
.dpTable {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #e5e7eb;
    background: transparent;
    border: none;
}

/* DAYS HEADER */
.dpDayTD {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-weight: 600;
    padding: 8px 0;
}

/* DATE CELLS */
.dpTD {
    border: none;
    padding: 6px;
    transition: 0.2s;
}

/* HOVER */
.dpTDHover {
    background: rgba(255, 153, 51, 0.2);
    border-radius: 8px;
    color: #ff9933;
    cursor: pointer;
}

/* ACTIVE / SELECTED DAY */
.dpDayHighlightTD {
    background: linear-gradient(135deg, #ff9933, #ff6600);
    border-radius: 8px;
}

.dpDayHighlight {
    color: #ffffff !important;
    font-weight: 600;
}

/* TITLE (MONTH + YEAR) */
.dpTitleTD {
    padding: 10px 0;
}

.dpTitleText {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

/* NAV BUTTONS */
.dpButton {
    background: rgba(255,255,255,0.05);
    border: none;
    border-radius: 6px;
    color: #e5e7eb;
    padding: 4px 8px;
    transition: 0.2s;
}

.dpButton:hover {
    background: rgba(255,255,255,0.1);
    color: #ff9933;
}

/* TODAY / CLOSE BUTTONS */
.dpTodayButtonTD {
    padding-top: 10px;
}

.dpTodayButton {
    background: linear-gradient(135deg, #138808, #0f6f06);
    border: none;
    border-radius: 6px;
    color: white;
    padding: 6px 10px;
    font-size: 11px;
    transition: 0.2s;
}

.dpTodayButton:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(19,136,8,0.4);
}

/* ROWS */
.dpTR,
.dpTitleTR,
.dpDayTR,
.dpTodayButtonTR {
    border: none;
}

/* ANIMATION */
.dpDiv {
    animation: fadeScale 0.2s ease;
}

@keyframes fadeScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
