/* Main Styling */
body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 20px;
}

.app-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    max-width: 800px;
    width: 100%;
}

.form-label {
    font-weight: 500;
    color: #495057;
}


/* AutoComplete Styling */
.autoComplete_wrapper {
    width: 100%;
    display: block;
}

#autoComplete_list_1 mark,
#autoComplete_list_2 mark {
    padding: 0;
    color: #0d6efd;
}

#fontSelect option:disabled {
    color: #999;
    font-style: italic;
}

.map-preview-placeholder {
    background-color: #e9ecef;
    border: 2px dashed #ced4da;
    border-radius: 10px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.map-preview-placeholder.active {
    border-color: #0d6efd;
    background-color: #f8f9fa;
}

.result-container {
    display: none;
    margin-top: 2rem;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/*Footer*/
footer a {
    color: #649aec;
    transition: .1s;
}
footer a:hover {
    color: #3f7fdf;
}
@media (max-width: 768px) {
    footer, .othersProjects {
        text-align: center !important;
    }
}