.dictionary-management-section { margin-top: 80px; width: 100%; box-sizing: border-box; padding: 40px 40px 0px 40px; display: flex; align-items: center; justify-content: center; padding-bottom: 40px; } 
.dictionary-container { background-color: #f7f9fc; border-radius: 12px; border-top: 4px solid #cc0000; border-bottom: 4px solid #cc0000; padding: 20px; width: 100%; max-width: 700px; height: auto; min-height: 60vh; display: flex; flex-direction: column; gap: 20px; box-shadow: 2px 0 8px rgba(0, 0, 0, 0.4), -2px 0 8px rgba(0, 0, 0, 0.4); } 
.dictionary-search-box { display: flex; gap: 10px; } 
.dictionary-input { flex-grow: 1; padding: 12px 20px; border-radius: 15px; border: 2px solid #ddd; font-size: 1rem; transition: all 0.3s ease; } 
.dictionary-input:focus { outline: none; border: 2px solid #a8a8a8; box-shadow: 0 0 4px rgba(204, 0, 0, 0.2); } 
.dictionary-search-btn { padding: 12px 25px; background-color: #cc0000; color: #fff; border: none; border-radius: 15px; font-size: 1rem; font-weight: bold; cursor: pointer; transition: all 0.3s ease; } 
.dictionary-search-btn:hover { background-color: #990000; transform: scale(1.02); } 
.dictionary-result-placeholder.centered { display: flex; justify-content: center; align-items: center; text-align: center; min-height: 200px; } 
.dictionary-result-placeholder { padding: 10px 5px; color: #222; font-size: 1rem; line-height: 1.6; flex-grow: 1; overflow-y: auto; border-top: 2px solid #b8b8b8; border-bottom: 2px solid #b8b8b8; display: block; text-align: left; } 
.dictionary-entry .word-type { box-shadow: 2px 2px rgba(0, 0, 0, 0.1); margin-bottom: 15px; padding: 10px; background-color: #fff; border: 1px solid #e0e0e0; border-radius: 10px; transition: transform 0.3s ease, box-shadow 0.3s ease; color: #222; transition: transform 0.3s ease, box-shadow 0.3s ease; } 
.dictionary-entry .word-type:hover { transform: scale(1.005); box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.05); } 
.word-type .type-red { color: #cc0000; } 
.word-title { text-align: center; font-weight: bold; font-size: 1.4rem; margin-bottom: 15px; color: #222; } 
.meaning-block div { margin-bottom: 4px; } 
.dictionary-entry .meaning-block, .dictionary-entry .synonyms-block, .dictionary-entry .antonyms-block { box-shadow: 2px 2px rgba(0, 0, 0, 0.1); margin-bottom: 15px; padding: 10px; background-color: #fff; border: 1px solid #e0e0e0; border-radius: 10px; transition: transform 0.3s ease, box-shadow 0.3s ease; } 
.dictionary-entry .meaning-block:hover, .dictionary-entry .synonyms-block:hover, .dictionary-entry .antonyms-block:hover { transform: scale(1.005); box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.05); }
