/* * MastiGuru Weather Styles
 * Height strictly set to 46px
 */

.mg-weather-container { 
    display: inline-flex; 
    align-items: center; 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    height: 46px; /* Exactly 46px height */
    box-sizing: border-box;
}

/* Button ki Styling (Exactly 46px) */
.mg-btn { 
    height: 46px; /* Fixed height for 46px */
    background-color: #ffffff; 
    border: 1px solid #dcdcdc; 
    padding: 0 20px; /* Top-bottom padding 0 karke height control ki gayi hai */
    border-radius: 23px !important; /* 46px ka aadha, perfect rounded corners ke liye */
    cursor: pointer; 
    font-size: 14px; 
    font-weight: 500;
    font-family: inherit;
    color: #444; 
    display: flex; 
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1); 
    box-sizing: border-box;
}

.mg-btn:hover:not(:disabled) { 
    background-color: #f8f9fa; 
    border-color: #bbbbbb; 
    color: #111; 
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.mg-btn:disabled {
    opacity: 0.8;
    cursor: not-allowed;
}

/* Weather Display ki Styling (Exactly 46px) */
.mg-weather-display { 
    height: 46px; /* Fixed height for 46px */
    font-size: 15px; 
    color: #222; 
    background-color: #f9f9f9;
    border: 1px solid #eaeaea;
    border-radius: 23px; /* 46px ka aadha */
    display: flex;
    align-items: center; 
    gap: 12px;
    padding: 0 22px; /* Top-bottom padding 0 */
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    box-sizing: border-box;
}

.mg-icon {
    font-size: 1.3em;
    line-height: 1;
}

.mg-bold {
    font-weight: 600;
}

/* Loading Spinner */
.mg-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(0,0,0,0.1);
    border-top-color: #555;
    border-radius: 50%;
    animation: mg-spin 0.8s linear infinite;
}

@keyframes mg-spin {
    to { transform: rotate(360deg); }
}

/* Fade in Animation */
.fade-in {
    animation: fadeIn 0.4s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-2px); }
    to { opacity: 1; transform: translateY(0); }
}