/* ===================================
   HIGHLIGHTS PAGE - Specific Styles
   =================================== */

.highlights-actions {
    text-align: center;
    margin-bottom: 20px;
}

.highlights-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.highlight-item {
    background: white;
    border: 2px solid #2c5f2d;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 12px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.highlight-item:hover {
    background: #e8f5e9;
    transform: translateX(-5px);
}

.highlight-item a {
    flex: 1;
    text-decoration: none;
    color: #2c5f2d;
    font-weight: bold;
    font-size: 1.1em;
}

.highlight-text {
    display: inline-block;
}

.btn-remove {
    background: #d32f2f;
    color: white;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 1.5em;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.btn-remove:hover {
    background: #c62828;
    transform: scale(1.1);
}

.btn-remove:active {
    transform: scale(0.95);
}
