﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    min-height: 100vh;
    /*background-color: #029B8C;*/
}

.wrapper {
    position: fixed;
    z-index:1000;
    bottom: 2rem;
    right: 3rem;
    max-width: 26rem;
    background: #fff;
    transition: right 0.3s ease;
    box-shadow: 18px 9px 14px rgba(0, 0, 0, 0.1);
}

    .wrapper.show {
        left: 20px;
    }

    .wrapper header {
        display: flex;
        align-items: center;
        column-gap: 15px;
    }

header i {
    font-size: 32px;
}

header h2 {
    font-weight: 500;
}

.wrapper .data {
    margin-top: 16px;
}

    .wrapper .data p {
        color: #333;
        font-size: 16px;
    }

.data p a {
    color: #029B8C;
    text-decoration: none;
}

    .data p a:hover {
        text-decoration: underline;
    }

.wrapper .buttons {
    margin-top: 16px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.buttons .button {
    border: none;
    color: #fff;
    padding: 8px 0;
    margin: 8px 0;
    border-radius: 4px;
    background: #029B8C;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s ease;
}

.buttons #acceptBtn:hover {
    background-color: #0d6efd;
}

#declineBtn {
    border: 2px solid #029B8C;
    background-color: #fff;
    color: #029B8C;
}

    #declineBtn:hover {
        background-color: #0d6efd;
        color: #fff;
    }

