/* 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-face {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border: 8px solid #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), inset 0 0 20px rgba(0, 0, 0, 0.1);
	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: 6px;
	height: 25%;
	margin-left: -3px;
	opacity: 0.9;
}

.wpclock-minute-hand {
	width: 4px;
	height: 35%;
	margin-left: -2px;
	opacity: 0.95;
}

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

.wpclock-center {
	position: absolute;
	width: 12px;
	height: 12px;
	background: #fff;
	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;
	}
}
