﻿body {
background-color: #f8f9fa;
}

.border-box {
background-image: url('/../Images/background.jpg');
background-size: cover;
background-position: center;
border-radius: 8px;
padding: 25px;
border: none;
position: relative;
color: white;
overflow: hidden;
}



.zocker-logo {
max-height: 80px;
margin-bottom: 20px;
}

.section-title {
font-size: 22px;
font-weight: bold;
margin-bottom: 20px;
color: #0d6efd;
}

.note {
font-size: 0.9rem;
color: #555;
margin-top: 30px;
}

.table td, .table th {
vertical-align: middle;
border: none !important;
}

.table, .table td, .table th {
background-color: transparent !important;
border: none !important;
}

.note a {
text-decoration: none;
color: #0d6efd;
font-weight: 500;
transition: color 0.2s ease;
}

.note a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.small-fs {
font-size: 0.7rem;
}

.footer {
background-color: #f8f9fa;
text-align: center;
}

.footer-logo {
width: 100%;
}

.social-media {
margin-top: 10px;
}

.social-media a {
    text-decoration: none;
}

.social-icon {
width: 32px;
height: 32px;
margin: 0 10px;
transition: transform 0.2s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.toast-message {
    background-color: #dc3545; /* đỏ - báo lỗi */
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    margin-bottom: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    animation: fadein 0.3s ease, fadeout 0.5s ease 2.5s;
}

@keyframes fadein {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeout {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

