﻿
.icon-buttons {
	position: absolute;
	top: 0px;
	right: 0px;
	display: flex;
}

.action-button {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	font-weight: bold;
	color: white;
	margin: 1px;
	width: 18px;
	height: 18px;
	background-color: #007bff;
	border: none;
	border-radius: 15px;
	cursor: pointer;
	transition: background-color 0.3s;
}

.close-button {
	background-color: #dc3545;
}

.refresh-button {
	background-color: #28a745;
	display: none;
}

.action-button .icon {
	margin: 5px;
}

.action-button:hover {
	opacity: 0.9;
}



.popup {
	position: fixed;
	bottom: -60px;
	left: 50%;
	transform: translateX(-50%);
	background: #ddaa00;
	padding: 10px 30px;
	font-size: 14px;
	font-family: sans-serif;
	color: #ffffff;
	border-radius: 40px;
	animation: popup 5s ease-in-out;
}

@keyframes popup {
	10%, 90% {
		bottom: 10px;
	}

	100% {
		bottom: -60px;
	}
}