.engarde-notification {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #222;
    color: white;
    padding: 15px 20px;
    font-family: sans-serif;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.engarde-notification p {
    margin: 0;
    flex: 1;
}

.engarde-download-button {
    background: #2E8B57;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    margin-left: 10px;
}

.engarde-close {
    margin-left: 15px;
    font-size: 20px;
    cursor: pointer;
}

.engarde-notify-banner {
    position: fixed;
    bottom: 60px;
    left: 20px;
    right: 20px;
    background-color: #444;
    color: white;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 0 12px rgba(0,0,0,0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
    font-family: sans-serif;
    gap: 10px;
}

.engarde-notify-banner button {
    background: #2E8B57;
    border: none;
    padding: 8px 14px;
    border-radius: 4px;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.engarde-notify-banner button#engarde-deny {
    background: #b33;
}
