/* Style for Današnji datum plugin */
#dd-container {
    display: flex;
    justify-content: space-between;
}

#dd-left, #dd-right {
	color:#222222;
}

#dd-left{
    width: 60%;
	background:#ffffff;
	border-radius:7px 0 0 7px;
	padding:60px 30px 30px;
}

#dd-left h3{
	text-align:center;
}

#dd-right {
    width: 40%;
	background:#eef2ff;
	border-radius:0 7px 7px 0;
	padding:30px 30px 15px;
}

#dd-day-of-year,
#dd-week-of-year,
#dd-days-remaining,
#dd-days-until-christmas {
    margin-bottom: 20px;
	border-bottom:dotted 2px #c7d2fe;
	width:100%;
    display: flex!important;
    justify-content: space-between!important;
}

.dd-info {
	font-weight:bold;
}

.dd-data {
	text-align:right;
	color:#4f46e5;
	font-weight:bold;
}

#dd-dayname_date {
    background: linear-gradient(to right, #4338ca, #6366f1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 2.2rem;
    font-weight: bold;
	text-align:center;
}

#dd-time {
	margin: 20px 0 30px;
    color: #222222;
    font-size: 1.8rem;
    font-weight: bold;
	text-align:center;
}

#dd-dayname_date p{
    background: linear-gradient(to right, #ff7e5f, #feb47b); /* Adjust colors */
    color: white; /* Text color */
    padding: 20px;
    text-align: center;
    font-size: 24px;
}

@media only screen and (max-width: 680px) {
#dd-container {
    flex-direction: column;
}
#dd-left{
    width: 100%;
	border-radius:7px 7px 0 0;
}

#dd-right {
    width: 100%;
	background:#eef2ff;
	border-radius:0 0 7px 7px;
	padding:30px 30px 15px;
}
}