/* Weather facade styles shown before hidden messenger is unlocked */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f2f5;
    margin: 0;
    padding: 0;
    color: #333;
}

header {
    background-color: #2c3e50;
    color: white;
    padding: 15px 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    margin: 0;
    font-weight: 300;
    font-size: 24px;
    cursor: default;
    user-select: none;
}

.search-icon {
    cursor: pointer;
    font-size: 20px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.search-icon:hover {
    opacity: 1;
}

.search-container {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-out;
}

.search-container.active {
    max-height: 60px;
    margin-top: 10px;
}

.facade-search-input {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 16px;
    box-sizing: border-box;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
}

.weather-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.city {
    font-size: 1.5em;
    font-weight: bold;
    color: #2980b9;
}

.temp {
    font-size: 2em;
    font-weight: bold;
}

.condition {
    color: #7f8c8d;
}

footer {
    text-align: center;
    color: #95a5a6;
    font-size: 0.8em;
    margin-top: 50px;
    padding: 20px;
}

#secure-auth-layer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#auth-input {
    background: transparent;
    border: none;
    border-bottom: 2px solid #0f0;
    color: #0f0;
    font-family: 'Courier New', monospace;
    font-size: 24px;
    text-align: center;
    outline: none;
    width: 300px;
    margin-bottom: 20px;
}

#auth-status {
    color: #0f0;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    min-height: 20px;
}

#app-root {
    display: none;
    width: 100%;
    height: 100vh;
    background: #fff;
}
