/* plugin CSS */

div.agent-plugin {
	position: relative;
	display: flex;
	flex-direction: column;
	background-position: center;
	background-repeat: no-repeat;
	height: 100%; width: 100%;
    justify-content: flex-start;
    overflow: hidden;
	pointer-events: none;
}

#agent-container {
    height: 60px;
    width: auto;
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    flex-direction: row;
    border-radius: 50px;
    padding: 10px;
    padding-right: 15px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    transition: opacity 1s ease;
    opacity: 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.agent-icon {
    width: 40px;
    height: 40px;
    background-color: black;
    border-radius: 20px;
    background-size: cover;
}

.agent-button {
    font-size: 14pt;
    pointer-events: all;
    cursor: pointer;
    display: none;
    transition: 0.3s;
    padding: 7px 20px;
    border-radius: 20px;
}

.agent-button:hover {
    scale: 1.03;
}
