* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #ffffff;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
} */

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    overflow-x: hidden;
	
}
/* Header Styles */
header {
    text-align: center;
     background: linear-gradient(135deg, #9CA1E2 0%, #4b85e6 50%, #9CA1E2 100%);
    color: white !important;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 10px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.2);
}




header h1 {
    font-size: 45px !important;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Main Content */
.main-content {
    flex: 1;
/*     padding: 3rem 2rem; */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

/* Form Styles */
.generator-form {
    background: white !important;
    padding: 2.5rem;
    border-radius: 16px !important;
    box-shadow: 0 10px 30px rgba(30, 60, 114, 0.15);
    border: 2px solid #f0f4ff !important;
    max-width: 400px;
    width: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.generator-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(30, 60, 114, 0.2);
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1e3c72;
    font-size: 1rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e1e8f7 !important;
    border-radius: 8px !important;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: #fafbff;
}

.form-input:focus {
    outline: none !important;
    border-color: #2a5298 !important;
    background: white;
    box-shadow: 0 0 0 3px rgba(42, 82, 152, 0.1);
}

/* Checkbox Styles */
.checkbox-group {
    margin-bottom: 2.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: #1e3c72;
}

.form-checkbox {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #2a5298 !important;
    border-radius: 4px !important;
    margin-right: 0.75rem;
    position: relative;
    transition: all 0.2s ease;
    background: white !important;
}

.form-checkbox:checked + .checkbox-custom {
    background: linear-gradient(135deg, #2a5298, #1e3c72) !important;
    border-color: #1e3c72 !important;
}

.form-checkbox:checked + .checkbox-custom::after {
    content: '✓' !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-text {
    font-size: 1rem;
}

/* Button Styles */
.generate-btn {
    width: 100%;
    background: linear-gradient(135deg, #9CA1E2 0%, #4b85e6 50%, #9CA1E2 100%);
    border: none !important;
    border-radius: 12px !important;
    padding: 1rem 2rem !important;
    font-size: 1.1rem;
    font-weight: bold;
    color: #1e3c72 !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.generate-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4) !important;
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
}

.generate-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.btn-text {
    font-size: 1.1rem;
}

.btn-icon {
    font-size: 1.2rem;
}

/* Results Styles */
.results-container {
    max-width: 800px;
    width: 100%;
    display: none;
}

.results-container.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.results-title {
    text-align: center;
    color: #1e3c72 !important;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.city-card {
    background: white !important;
    padding: 1.5rem;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.1);
    border-left: 4px solid #4b85e6 !important;
	     transition: all 0.2s ease;
    text-align: center;
}

.city-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.15);
    border-left-color: #2a5298;
}

.city-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3c72 !important;
    margin-bottom: 0.5rem;
}

.city-state {
    font-size: 0.9rem;
    color: #666;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: #f8f9ff;
    text-align: center;
    padding: 2rem;
    color: #666;
    border-top: 1px solid #e1e8f7;
    margin-top: auto;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 25px !important;
    }
	.container{
		padding:0px !important
	}
    
    .subtitle {
        font-size: 1rem;
    }
    
    .header {
        padding: 2rem 1rem;
    }
    
    .main-content {
        padding: 2rem 1rem;
        gap: 2rem;
    }
    
    .generator-form {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .city-card {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 1.75rem;
    }
    
    .generator-form {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .form-input, .generate-btn {
        font-size: 1rem;
    }
}

/* Loading State */
.generate-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.generate-btn.loading .btn-text::after {
    content: '...';
    animation: loading 1s infinite;
}

@keyframes loading {
    0%, 20% { content: '...'; }
    40% { content: ''; }
    60% { content: '.'; }
    80% { content: '..'; }
}