.wtc-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    max-width: 1200px;
    margin: 20px auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid #e1e1e1;
}

.wtc-header {
    background: #4A90E2;
    color: #fff;
    padding: 5px;
    text-align: center;
}

/* Analog Widget Styles */
.wtc-analog-widget {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    padding: 30px 20px;
    background: #fbfcfe;
    border-bottom: 1px solid #eee;
}

.wtc-analog-clock-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 180px;
}

.wtc-clock-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    margin-bottom: 15px;
    transition: background 0.5s;
}

/* Day/Night Themes */
.wtc-clock-wrapper.wtc-day {
    background: #ffffff;
    border: 5px solid #f0f0f0;
}
.wtc-clock-wrapper.wtc-night {
    background: #1a1a1a;
    border: 5px solid #333;
}

.wtc-clock-face {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}

.wtc-hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform-origin: 50% 100%;
    border-radius: 4px;
}

.wtc-day .wtc-hour-hand { width: 4px; height: 35px; background: #000; }
.wtc-day .wtc-min-hand { width: 3px; height: 50px; background: #333; }
.wtc-night .wtc-hour-hand { width: 4px; height: 35px; background: #d4af37; } /* Gold */
.wtc-night .wtc-min-hand { width: 3px; height: 50px; background: #fff; }

.wtc-sec-hand {
    width: 2px;
    height: 60px;
    background: #ff4d6d;
    z-index: 10;
}

.wtc-center-dot {
    position: absolute;
    top: 50%; left: 50%;
    width: 8px; height: 8px;
    background: #ff4d6d;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
}

.wtc-marker {
    position: absolute;
    width: 100%; height: 100%;
    text-align: center;
    padding: 2px;
    font-size: 10px;
    font-weight: bold;
}

.wtc-day .wtc-marker { color: #ccc; }
.wtc-night .wtc-marker { color: #444; }

.wtc-clock-label {
    text-align: center;
}

.wtc-clock-city {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 2px;
}

.wtc-clock-digital {
    font-family: monospace;
    font-size: 12px;
    color: #666;
}

/* Info Footer Styles */
.wtc-info-footer {
    padding: 30px 25px;
    background: #fff;
    border-top: 1px solid #eee;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.wtc-info-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.wtc-info-left p, .wtc-info-right p {
    margin: 0 0 5px 0;
}

.wtc-info-right {
    text-align: right;
}

.wtc-red { color: #d0021b; font-weight: bold; }
.wtc-muted { color: #999; }
.wtc-info-footer a { color: #4A90E2; text-decoration: none; }
.wtc-info-footer a:hover { text-decoration: underline; }

/* Table Styles... */
.wtc-tabs {
    display: flex;
    flex-wrap: wrap;
    background: #f8f9fa;
    border-bottom: 1px solid #e1e1e1;
}

.wtc-tab {
    padding: 15px 20px;
    border: none; background: none; cursor: pointer;
    font-weight: 500; color: #666; transition: all 0.2s;
    border-bottom: 2px solid transparent;
}

.wtc-tab.active {
    color: #4A90E2; border-bottom-color: #4A90E2; background: #fff;
}

.wtc-filters {
    padding: 20px; display: flex; flex-wrap: wrap; gap: 20px;
    background: #fff; border-bottom: 1px solid #eee;
}

.wtc-filter-group { display: flex; flex-direction: column; gap: 5px; min-width: 150px; }
.wtc-search-group { flex-grow: 1; max-width: 400px; }

.wtc-filter-group select, .wtc-filter-group input {
    padding: 8px 12px; border: 1px solid #ddd; border-radius: 4px;
    font-size: 14px; background-color: #fff;
}

.wtc-table-header {
    display: grid; grid-template-columns: repeat(3, 1fr 60px 140px);
    background: #f1f1f1; border-bottom: 1px solid #ddd;
}

.wtc-col-header { padding: 12px; font-size: 12px; font-weight: 700; color: #555; text-transform: uppercase; }
.wtc-col-header.center { text-align: center; }
.wtc-col-header.right { text-align: right; }

.wtc-grid { display: grid; grid-template-columns: repeat(3, 1fr 60px 140px); }
.wtc-item { display: contents; }
.wtc-item > div { padding: 12px; border-bottom: 1px solid #eee; display: flex; align-items: center; }
.wtc-item.alt > div { background: #fafafa; }
.wtc-item:hover > div { background: #f0f7ff; }

.wtc-city-name { font-weight: 600; color: #333; display: flex; align-items: center; gap: 5px; }
.cap-tag { font-size: 8px; background: #fff3cd; color: #856404; padding: 1px 4px; border-radius: 3px; }
.wtc-country-name { font-size: 10px; color: #999; }
.wtc-gmt-offset { justify-content: center; font-family: monospace; font-size: 11px; color: #666; }
.wtc-time { justify-content: flex-end; font-weight: 700; font-family: monospace; color: #4A90E2; font-size: 13px; }
.wtc-footer { padding: 15px 25px; font-size: 12px; color: #aaa; background: #f9f9f9; text-align: center; border-top: 1px solid #eee; }

@media (max-width: 768px) {
    .wtc-info-right { text-align: left; }
    .wtc-info-grid { flex-direction: column; }
}

@media (max-width: 640px) {
    .wtc-analog-clock-item { width: 45%; }
    .wtc-table-header { display: none; }
    .wtc-grid { grid-template-columns: 1fr 60px 140px; }
    .wtc-filters { flex-direction: column; }
}