/* WordPress Clock Styles */

.wpclock-container {
	position: relative;
	margin: 20px auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Analog Clock Styles */
.wpclock-analog {
	width: 100%;
	height: 100%;
	position: relative;
}

.wpclock-container-out {
    background: #000;
    border-radius: 7px;
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

.wpclock-title {
	position: relative;
    margin-left: 50px;
    font-size: 28px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #fff;
}

.wpclock-title::after {
	content: "";
	height: 2px;
	width: 70%;
    background-color: #23FF80;
    position: absolute;
    bottom: -20px;
    left: 0;
}


.wpclock-face {
       width: 100%;
    height: 100%;
    border-radius: 50%;
    background-image: url('clock.png');
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.wpclock-face::before {
	content: '';
	position: absolute;
	width: 8px;
	height: 8px;
	background: #fff;
	border-radius: 50%;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
}

.wpclock-face::after {
	content: '';
	position: absolute;
	width: 8px;
	height: 8px;
	background: #fff;
	border-radius: 50%;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
}

.wpclock-hour-hand,
.wpclock-minute-hand,
.wpclock-second-hand {
	position: absolute;
	bottom: 50%;
	left: 50%;
	transform-origin: bottom center;
	background: #fff;
	border-radius: 10px;
}

.wpclock-hour-hand {
	width: 2px;
	height: 30%;
	margin-left: -3px;
	opacity: 0.9;
	background:#23ff80;
}

.wpclock-minute-hand {
	width: 2px;
	height: 35%;
	margin-left: -2px;
	opacity: 0.95;
	background:#23ff80;
}

.wpclock-second-hand {
	width: 2px;
	height: 40%;
	margin-left: -1px;
	background: #23ff80;
}

.wpclock-center {
	position: absolute;
	width: 6px;
	height: 6px;
	background: #333;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Digital Clock Styles */
.wpclock-digital {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	padding: 20px;
	color: #fff;
	font-family: 'Courier New', monospace;
}

.wpclock-time {
	font-size: 2em;
	font-weight: bold;
	letter-spacing: 2px;
	text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.wpclock-date {
	font-size: 0.9em;
	margin-top: 10px;
	opacity: 0.9;
}

/* Widget Styles */
.wpclock-widget .wpclock-container {
	margin: 10px auto;
}

/* Responsive */
@media (max-width: 768px) {
	.wpclock-container {
		max-width: 100%;
	}
	
	.wpclock-time {
		font-size: 1.5em;
	}
}
