/* Estilos generales */
.ram-search-container {
	margin-bottom: 30px;
	padding: 1rem;
	border-radius: 6px;
	background: linear-gradient(90deg, rgba(195, 180, 242, 1) 0%, rgba(169, 244, 149, 1) 100%);
}

#ram-search-input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#ram-search-results {
    margin-top: 10px;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 10px;
    background: #f9f9f9;
}

.ram-search-results-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ram-search-results-list li {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.ram-search-results-list li:last-child {
    border-bottom: none;
}

.ram-search-term {
    display: inline-block;
    background: #eee;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
    color: #666;
}

/* Estilos para las secciones */
.ram-term-section {
    margin-bottom: 40px;
}

.ram-term-title {
    color: #333;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

/* Estilos para los posts */
.ram-post {
    background: #fff;
    border-radius: .35rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.ram-post-title {
    margin-top: 0;
    color: #2a6496;
}

/* Estilos para el sistema de votación */

.ram-average {
    font-weight: bold;
    font-size: 18px;
    color: #ff9800;
}

.ram-stars {
    display: inline-block;
    margin-left: 10px;
}

.ram-star {
    color: #ccc;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.2s;
}

.ram-star:hover {
    color: #ffcc00;
}

.ram-vote-count {
    margin-left: 10px;
    font-size: 14px;
    color: #666;
}

/* Estilos para el formulario de sugerencias */

.ram-suggestion-form input[type="text"] {
    width: 70%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
}

.ram-suggestion-form button {
    width: 30%;
    padding: 8px;
    cursor: pointer;
}

.ram-suggestion-link {
    color: #4CAF50;
    text-decoration: none;
}

.ram-suggestion-link:hover {
    text-decoration: underline;
}

.ram-suggestion-success {
    color: #4CAF50;
    font-style: italic;
}

/* Botón Mostrar todas */
.ram-show-all {
    background: #f0f0f0;
    border: 1px solid #ddd;
    padding: 5px 10px;
    margin: 10px 0;
    cursor: pointer;
    border-radius: 3px;
}

.ram-show-all:hover {
    background: #e0e0e0;
}

/* Contenedor de todas las palabras */
.ram-all-posts {
    margin-top: 15px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

/* Resultados de búsqueda */

.ram-search-results-list a:hover {
    background: #f5f5f5;
}

/* Sección de palabras destacadas */
.ram-highlighted-section {
	padding: 1rem;
	border-radius: .35rem;
	margin-bottom: 2rem;
}
.ram-highlighted-section {
	background: linear-gradient(90deg, rgba(195, 180, 242, 1) 0%, rgba(169, 244, 149, 1) 100%);
}
.highlighted {
	border: 10px solid;
	border-image-slice: 1;
	border-width: 5px;
	border-image-source: linear-gradient(to left, rgba(169, 244, 149, 1), rgba(195, 180, 242, 1));
	border-radius: .35rem;
}

.ram-highlighted-section h2 {
    padding-bottom: 10px;
}

/* Botón de toggle */
.ram-full-list-toggle {
    margin: 20px 0;
}

/* Listado completo */
.ram-full-list {
    margin-top: 20px;
}

/* Resaltado para búsqueda */
.ram-term-section.highlighted {
    animation: highlight-fade 3s;
    border-left: 4px solid #4CAF50;
    padding-left: 15px;
}

@keyframes highlight-fade {
    0% { background-color: #f0fff0; }
    100% { background-color: transparent; }
}