.et-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

.et-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.et-search-container {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.et-city-search {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 16px;
    background: white;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.et-city-search:focus {
    outline: none;
    border-color: #667eea;
}

.et-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
}

.et-suggestion-item {
    padding: 12px 20px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.et-suggestion-item:hover {
    background-color: #f5f5f5;
}

.et-suggestion-item:last-child {
    border-bottom: none;
}

.et-suggestion-name {
    font-weight: bold;
    color: #333;
}

.et-suggestion-country {
    font-size: 12px;
    color: #666;
    margin-left: 10px;
}

.et-time-display {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    color: white;
    position: relative;
}

.et-location {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.9);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.et-time {
    font-size: 6rem;
    font-weight: bold;
    color: white;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.et-date {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.et-share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.et-share-btn {
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.et-share-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.et-share-vk { background: #4a76a8; color: white; }
.et-share-tg { background: #0088cc; color: white; }
.et-share-wa { background: #25d366; color: white; }
.et-share-link { background: #666; color: white; }

.et-cities-section {
    margin-bottom: 40px;
}

.et-section-title {
    text-align: center;
    font-size: 24px;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.et-cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.et-city-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    transition: transform 0.2s ease;
}

.et-city-item:hover {
    transform: translateY(-2px);
    background: #e9ecef;
}

.et-city-name {
    font-weight: bold;
    color: #333;
    font-size: 16px;
}

.et-city-time {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    color: #667eea;
    font-size: 16px;
    background: white;
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.et-notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #4CAF50;
    color: white;
    padding: 15px 25px;
    border-radius: 5px;
    z-index: 10000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-weight: bold;
}

/* Адаптивность */
@media (max-width: 768px) {
    .et-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .et-search-container {
        max-width: 100%;
    }
    
    .et-location {
        font-size: 20px;
    }
    
    .et-time {
        font-size: 4rem;
    }
    
    .et-date {
        font-size: 18px;
    }
    
    .et-cities-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .et-section-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .et-container {
        padding: 10px;
    }
    
    .et-time-display {
        padding: 20px 0;
        margin-bottom: 30px;
    }
    
    .et-location {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .et-time {
        font-size: 3rem;
    }
    
    .et-share-buttons {
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .et-share-btn {
        width: 50px;
        height: 50px;
    }
    
    .et-city-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .et-city-name,
    .et-city-time {
        width: 100%;
    }
    
    .et-suggestion-item {
        padding: 10px 15px;
    }
}