/*
Theme Name: CricHunter
Theme URI: https://rahulmourya.in/
Author: Rahul Mourya
Author URI: https://rahulmourya.in/
Description: Don't try to copy the theme, otherwise, I'll take the action against you.
Version: 2.0
*/
/* ============================================
   UNIVERSAL TOOLKIT CSS
   Applied to: Alarm, Timer, Stopwatch, World Clock, Timezone, Holidays, Calculator, Converter
   ============================================ */

/* Base Variables */
:root {
    --bg-white: #ffffff;
    --bg-dark: #0f172a;
    --card-white: #ffffff;
    --card-dark: #0f172a;
    --text-white: #1e293b;
    --text-dark: #f1f5f9;
    --border-white: #e2e8f0;
    --border-dark: #334155;
    --accent: #3b82f6;
    --accent-dark: #3b82f6;
    --danger: #ef4444;
    --success: #22c55e;
    --warning: #f59e0b;
}

/* Dark Mode */
body.dark {
    background: #0f172a;
    color: #f1f5f9;
}

/* ============================================
   TOOLBAR - Navigation between tools
   ============================================ */
.toolkit-nav {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

body.dark .toolkit-nav {
    background: #0f172a;
    border-bottom-color: #334155;
}

.toolkit-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4px;
    padding: 8px 0;
    flex-wrap: nowrap;
    justify-content: center;
}

.toolkit-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    white-space: nowrap;
    color: #64748b;
    background: transparent;
}

.toolkit-item i {
    font-size: 16px;
}

.toolkit-item:hover {
    background: #f1f5f9;
    color: #3b82f6;
}

body.dark .toolkit-item:hover {
    background: #1e293b;
    color: #60a5fa;
}

.toolkit-item.active {
    background: #3b82f6;
    color: white;
}

body.dark .toolkit-item.active {
    background: #3b82f6;
    color: white;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .toolkit-nav-container {
        justify-content: flex-start;
        padding: 8px 0;
    }
    
    .toolkit-item {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .toolkit-item i {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .toolkit-item {
        padding: 6px 6px;
        font-size: 11px;
    }
    
    .toolkit-item i {
        font-size: 12px;
    }
}

/* ============================================
   MAIN CONTAINER - All Tools Use This
   ============================================ */
.toolkit-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6px;
}

.toolkit-card {
    background: white;
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

body.dark .toolkit-card {
    background: #0f172a;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Page Title */
.toolkit-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: -0.3px;
}

body.dark .toolkit-title {
    color: #f1f5f9;
}

/* Section Styles */
.toolkit-section {
    background: #f8fafc;
    border-radius: 20px;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

body.dark .toolkit-section {
    background: #1e293b;
    border-color: #334155;
}

.toolkit-section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1e293b;
}

body.dark .toolkit-section-title {
    color: #f1f5f9;
}

/* Grid Layouts */
.toolkit-grid {
    display: grid;
    gap: 12px;
}

.toolkit-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.toolkit-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.toolkit-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.toolkit-grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

.toolkit-grid-6 {
    grid-template-columns: repeat(6, 1fr);
}

/* Buttons */
.toolkit-btn {
    padding: 10px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
    color: #1e293b;
    text-align: center;
}

body.dark .toolkit-btn {
    background: #0f172a;
    border-color: #334155;
    color: #e2e8f0;
}

.toolkit-btn:hover {
    transform: translateY(-2px);
    border-color: #3b82f6;
    background: #eff6ff;
}

body.dark .toolkit-btn:hover {
    background: #1e293b;
    border-color: #3b82f6;
}

.toolkit-btn-primary {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

.toolkit-btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.toolkit-btn-danger {
    background: #ef4444;
    border-color: #ef4444;
    color: white;
}

.toolkit-btn-success {
    background: #22c55e;
    border-color: #22c55e;
    color: white;
}

/* Inputs */
.toolkit-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: white;
    transition: all 0.2s;
}

body.dark .toolkit-input {
    background: #0f172a;
    border-color: #334155;
    color: #f1f5f9;
}

.toolkit-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

/* Display */
.toolkit-display {
    text-align: center;
    padding: 6px;
    border-radius: 20px;
    background: #f8fafc;
    margin-bottom: 20px;
}

body.dark .toolkit-display {
    background: #1e293b;
}

.toolkit-time {
    font-size: 48px;
    font-weight: 600;
    font-family: monospace;
    letter-spacing: 2px;
}

.toolkit-date {
    font-size: 14px;
    margin-top: 8px;
    opacity: 0.7;
}

/* List Items */
.toolkit-list {
    max-height: 300px;
    overflow-y: auto;
}

.toolkit-item-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px;
    border-radius: 14px;
    margin-bottom: 8px;
    border: 1px solid #e2e8f0;
    background: white;
}

body.dark .toolkit-item-card {
    background: #0f172a;
    border-color: #334155;
}

/* Toggle Switch */
.toolkit-toggle {
    width: 52px;
    height: 28px;
    border-radius: 30px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
    background: #cbd5e1;
}

.toolkit-toggle.active {
    background: #3b82f6;
}

.toolkit-toggle::after {
    content: '';
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 3px;
    transition: 0.2s;
}

.toolkit-toggle.active::after {
    left: 25px;
}

/* Table Styles */
.toolkit-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.toolkit-table th,
.toolkit-table td {
    padding: 12px;
    border: 1px solid #e2e8f0;
    text-align: left;
}

body.dark .toolkit-table th,
body.dark .toolkit-table td {
    border-color: #334155;
}

.toolkit-table th {
    background: #f8fafc;
    font-weight: 600;
}

body.dark .toolkit-table th {
    background: #1e293b;
}

/* Responsive */
@media (max-width: 768px) {
    .toolkit-container {
        padding: 6px;
    }
    
    .toolkit-card {
        padding: 6px;
    }
    
    .toolkit-title {
        font-size: 24px;
    }
    
    .toolkit-time {
        font-size: 36px;
    }
    
    .toolkit-grid-4,
    .toolkit-grid-5,
    .toolkit-grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .toolkit-container {
        padding: 6px;
    }
    
    .toolkit-card {
        padding: 6px;
    }
    
    .toolkit-title {
        font-size: 20px;
    }
    
    .toolkit-time {
        font-size: 28px;
    }
    
    .toolkit-grid-2,
    .toolkit-grid-3,
    .toolkit-grid-4,
    .toolkit-grid-5,
    .toolkit-grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Scrollbar */
.toolkit-list::-webkit-scrollbar,
.toolkit-nav::-webkit-scrollbar {
    height: 4px;
    width: 4px;
}

.toolkit-list::-webkit-scrollbar-track,
.toolkit-nav::-webkit-scrollbar-track {
    background: #e2e8f0;
    border-radius: 10px;
}

.toolkit-list::-webkit-scrollbar-thumb,
.toolkit-nav::-webkit-scrollbar-thumb {
    background: #3b82f6;
    border-radius: 10px;
}

/* Alarm Specific Styles */
.alarm-time-picker input {
    width: 100%;
    padding: 14px;
    font-size: 18px;
    border: 1px solid var(--border-white);
    border-radius: 16px;
    text-align: center;
    font-family: monospace;
    background: white;
}

body.dark .alarm-time-picker input {
    background: #0f172a;
    border-color: #334155;
    color: #f1f5f9;
}

.alarm-minutes-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 8px;
    margin-top: 8px;
}

.alarm-tone-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 8px;
}

.alarm-days-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.alarm-day-btn {
    width: 44px;
    padding: 8px 0;
    border: 1px solid #e2e8f0;
    border-radius: 40px;
    font-size: 13px;
    cursor: pointer;
    text-align: center;
    background: white;
}

body.dark .alarm-day-btn {
    background: #0f172a;
    border-color: #334155;
    color: #e2e8f0;
}

.alarm-day-btn.selected {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.alarm-preset-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.alarm-tone-btn.active {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.alarm-toggle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

@media (max-width: 768px) {
    .alarm-minutes-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    .alarm-tone-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .alarm-day-btn {
        width: 40px;
    }
}

@media (max-width: 480px) {
    .alarm-minutes-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
/* Timer Specific Styles */
.timer-display {
    text-align: center;
    padding: 10px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 20px;
    margin-bottom: 24px;
}

body.dark .timer-display {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.timer-time {
    font-size: 64px;
    font-weight: 700;
    font-family: monospace;
    color: white;
    letter-spacing: 4px;
}

.timer-controls {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}

.timer-control-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.timer-control-btn.start {
    background: #22c55e;
    color: white;
}

.timer-control-btn.pause {
    background: #f59e0b;
    color: white;
}

.timer-control-btn.reset {
    background: #6b7280;
    color: white;
}

.timer-control-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.timer-preset-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin: 20px 0;
}

.timer-preset-btn {
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    background: white;
    transition: all 0.2s;
}

body.dark .timer-preset-btn {
    background: #0f172a;
    border-color: #334155;
    color: #e2e8f0;
}

.timer-preset-btn:hover {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

.timer-preset-btn.active {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

.timer-custom-input {
    display: flex;
    gap: 12px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.timer-custom-input input {
    flex: 1;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    text-align: center;
    font-family: monospace;
}

body.dark .timer-custom-input input {
    background: #0f172a;
    border-color: #334155;
    color: #f1f5f9;
}

.timer-custom-input button {
    padding: 12px 24px;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
}

.timer-laps {
    max-height: 300px;
    overflow-y: auto;
    margin-top: 20px;
}

.timer-lap-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid #e2e8f0;
    font-family: monospace;
    font-size: 14px;
}

body.dark .timer-lap-item {
    border-color: #334155;
}

.timer-lap-number {
    font-weight: 600;
    color: #3b82f6;
}

.timer-lap-time {
    font-weight: 500;
}

.timer-progress {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    margin: 20px 0;
}

.timer-progress-bar {
    height: 100%;
    background: #3b82f6;
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 10px;
}

.timer-end-message {
    text-align: center;
    padding: 20px;
    background: #fef3c7;
    border-radius: 20px;
    margin-top: 20px;
    color: #92400e;
}

body.dark .timer-end-message {
    background: #422006;
    color: #fde047;
}

@media (max-width: 768px) {
    .timer-time {
        font-size: 48px;
    }
    .timer-preset-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .timer-control-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .timer-time {
        font-size: 36px;
    }
    .timer-preset-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .timer-custom-input {
        flex-direction: column;
    }
}
/* Stopwatch Specific Styles */
.stopwatch-display {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    margin-bottom: 24px;
}

body.dark .stopwatch-display {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.stopwatch-time {
    font-size: 64px;
    font-weight: 700;
    font-family: monospace;
    letter-spacing: 4px;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.stopwatch-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.stopwatch-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.stopwatch-btn-start {
    background: #22c55e;
    color: white;
}

.stopwatch-btn-start:hover {
    background: #16a34a;
    transform: scale(1.02);
}

.stopwatch-btn-pause {
    background: #f59e0b;
    color: white;
}

.stopwatch-btn-pause:hover {
    background: #d97706;
    transform: scale(1.02);
}

.stopwatch-btn-reset {
    background: #ef4444;
    color: white;
}

.stopwatch-btn-reset:hover {
    background: #dc2626;
    transform: scale(1.02);
}

.stopwatch-btn-lap {
    background: #3b82f6;
    color: white;
}

.stopwatch-btn-lap:hover {
    background: #2563eb;
    transform: scale(1.02);
}

/* Lap Table */
.lap-container {
    max-height: 300px;
    overflow-y: auto;
    margin-top: 16px;
}

.lap-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.lap-table th,
.lap-table td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

body.dark .lap-table th,
body.dark .lap-table td {
    border-bottom-color: #334155;
}

.lap-table th {
    background: #f8fafc;
    font-weight: 600;
    position: sticky;
    top: 0;
}

body.dark .lap-table th {
    background: #1e293b;
}

.lap-number {
    font-weight: 700;
    color: #3b82f6;
}

.lap-time {
    font-family: monospace;
    font-size: 15px;
    font-weight: 500;
}

.lap-diff {
    font-size: 12px;
    opacity: 0.7;
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.stat-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

body.dark .stat-card {
    background: #1e293b;
    border-color: #334155;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
    margin-bottom: 8px;
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    font-family: monospace;
    color: #3b82f6;
}

/* Quick Set */
.quick-times {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.quick-btn {
    padding: 8px 16px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 40px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

body.dark .quick-btn {
    background: #0f172a;
    border-color: #334155;
    color: #e2e8f0;
}

.quick-btn:hover {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

@media (max-width: 768px) {
    .stopwatch-time {
        font-size: 42px;
        letter-spacing: 2px;
    }
    
    .stopwatch-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lap-table th,
    .lap-table td {
        padding: 8px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .stopwatch-time {
        font-size: 32px;
    }
    
    .stopwatch-buttons {
        gap: 8px;
    }
    
    .stopwatch-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .stat-card {
        padding: 10px;
    }
    
    .stat-value {
        font-size: 16px;
    }
}
/* World Clock Specific Styles */
.world-clock-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.city-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
    cursor: pointer;
}

body.dark .city-card {
    background: #1e293b;
    border-color: #334155;
}

.city-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: #3b82f6;
}

.city-name {
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.city-time {
    font-size: 28px;
    font-weight: 600;
    font-family: monospace;
    letter-spacing: 1px;
}

.city-date {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 8px;
}

.city-offset {
    font-size: 11px;
    margin-top: 6px;
    color: #3b82f6;
}

body.dark .city-offset {
    color: #60a5fa;
}

.selected-cities-section {
    margin-top: 24px;
}

.search-box {
    position: relative;
    margin-bottom: 20px;
}

.search-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: white;
    transition: all 0.2s;
}

body.dark .search-input {
    background: #0f172a;
    border-color: #334155;
    color: #f1f5f9;
}

.search-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 10;
    display: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

body.dark .search-results {
    background: #0f172a;
    border-color: #334155;
}

.search-result-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #e2e8f0;
    transition: background 0.2s;
}

body.dark .search-result-item {
    border-bottom-color: #334155;
}

.search-result-item:hover {
    background: #f1f5f9;
}

body.dark .search-result-item:hover {
    background: #1e293b;
}

.time-comparison {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 20px;
    padding: 20px;
    color: white;
    margin-bottom: 20px;
}

.time-comparison-title {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 12px;
}

.comparison-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-city {
    font-weight: 600;
}

.comparison-time {
    font-family: monospace;
    font-weight: 500;
}

.quick-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.timezone-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.timezone-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

body.dark .timezone-item {
    background: #1e293b;
    border-color: #334155;
}

.timezone-label {
    font-weight: 600;
    font-size: 13px;
}

.timezone-time {
    font-family: monospace;
    font-size: 14px;
    font-weight: 500;
    color: #3b82f6;
}

body.dark .timezone-time {
    color: #60a5fa;
}

.converter-result {
    background: #f1f5f9;
    padding: 16px;
    border-radius: 16px;
    text-align: center;
    margin-top: 12px;
}

body.dark .converter-result {
    background: #1e293b;
}

/* Remove City Button */
.remove-city-btn {
    background: #ef4444;
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 11px;
    margin-top: 8px;
    transition: all 0.2s;
}

.remove-city-btn:hover {
    background: #dc2626;
    transform: scale(1.02);
}

/* Dark Mode Toggle Row */
.dark-mode-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    cursor: pointer;
}

.dark-mode-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
}

.dark-mode-switch {
    width: 52px;
    height: 28px;
    border-radius: 30px;
    position: relative;
    transition: all 0.2s;
    background: #cbd5e1;
}

body.dark .dark-mode-switch {
    background: #3b82f6;
}

.dark-mode-switch::after {
    content: '';
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 3px;
    transition: 0.2s;
}

body.dark .dark-mode-switch::after {
    left: 25px;
}

@media (max-width: 768px) {
    .world-clock-grid {
        grid-template-columns: 1fr;
    }
    
    .city-time {
        font-size: 24px;
    }
    
    .city-name {
        font-size: 16px;
    }
    
    .timezone-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .city-time {
        font-size: 20px;
    }
    
    .timezone-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-actions .toolkit-btn {
        font-size: 11px;
        padding: 6px 12px;
    }
}