#bp-memory-form-wrapper {
    padding: 1em;
}
#add-memory-button, #save-all-memories {
    margin: 1em 0;
}
.memory-entry {
    border: 1px solid #ccc;
    padding: 1em;
    margin-bottom: 1em;
}
.temp-fields input {
    margin-right: 0.5em;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1em;
}
th, td {
    border: 1px solid #ccc;
    padding: 0.5em;
    text-align: left;
}


#save-all-memories {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    padding: 12px 20px;
    background: #D46A3F;
    color: white;
    border: none;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    font-size: 16px;
    cursor: pointer;
}
#save-all-memories:hover {
    background: #98401d;
}


#save-confirmation {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 10px 16px;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
    font-size: 14px;
    display: none;
    z-index: 9999;
}

.delete-memory-btn {
    background-color: #dc3545;
    color: white;
    padding: 6px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.delete-memory-btn:hover {
    background-color: #c82333;
}
