

/* General Styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f7f6;
    display: flex;
    justify-content: center;
    padding-top: 50px;
}

.container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    width: 90%;
    max-width: 500px;
}

/* Search Bar Styling */
.search-box {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

input {
    flex: 1;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    outline: none;
}

input:focus { border-color: #007bff; }

button {
    padding: 12px 20px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover { background: #0056b3; }

/* Result Display Styling */
.result-container {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.word-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.synonyms span {
    background: #e9ecef;
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 5px;
    font-size: 0.9rem;
}

.error-text { color: #dc3545; font-weight: bold; }