/* Style général */
.bap-container {
    max-width: 800px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

/* Barre de saisie */
.bap-input-container {
    display: flex;
    width: 100%;
    margin-bottom: 20px;
}

#bap-intention-input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #e1e1e1;
    border-radius: 25px 0 0 25px;
    font-size: 16px;
    outline: none;
    border-right: none;
}

#bap-submit-intention {
    background: #673AB7;
    color: white;
    border: none;
    border-radius: 0 25px 25px 0;
    padding: 0 20px;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#bap-submit-intention:hover {
    background: #5e35b1;
}

/* Liste des intentions */
.bap-intention {
    background: #f9f9f9;
    border-radius: 20px;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.bap-intention:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.bap-intention-header {
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bap-intention-text {
    flex: 1;
    margin-right: 15px;
    font-size: 15px;
    word-break: break-word;
    color: #000000;
}

.bap-like {
    background: transparent;
    color: #673AB7;
    border: none;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.bap-like:hover {
    color: #5e35b1;
}
