﻿html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.navbar .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.2); /* Màu trắng nhạt, không bị mất chữ */
    color: white; /* Giữ màu chữ trắng */
    border-color: white;
}

.logo {
    max-width: 100%; /* Logo không vượt quá kích thước gốc */
    height: auto; /* Giữ tỉ lệ */
    width: auto; /* Tự động co giãn */
    max-height: 50px; /* Giới hạn chiều cao tối đa */
}

/* Nếu muốn cố định chiều cao nhưng co giãn chiều rộng theo tỷ lệ */
.logo-container {
    display: flex;
    justify-content: center; /* Căn giữa logo */
    align-items: center;
    height: 45px; /* Chiều cao khung chứa logo */
}

.hero-products {
    background: linear-gradient(to right, #01324D, #00629A);
    color: white;
    padding: 80px 20px;
    text-align: center;
    border-radius: 10px;
    margin-top: 100px;
}

.hero-homepage {
    background: linear-gradient(to right, #002f4b, #005792);
    padding: 80px 20px;
    border-radius: 10px;
    color: white;
    text-align: center;
    margin-top: 100px;
}

.hero-profile {
    background: linear-gradient(to right, #002f4b, #005792);
    padding: 80px 20px;
    border-radius: 10px;
    color: white;
    text-align: center;
    margin-top: 10px
}

.hero-pricing {
    background: linear-gradient(to right, #00314E, #005B8F);
    color: white;
    padding: 80px 20px;
    text-align: center;
    border-radius: 10px;
    margin-top: 100px;
}

.icon {
    font-size: 50px;
    color: #007bff;
}

h3 {
    font-size: 1.70rem!important;
}

th a {
    color: white; /* giữ màu trắng */
    text-decoration: none; /* luôn có gạch chân */
}

    th a:hover {
        color: white; /* giữ màu trắng */
        text-decoration: underline; /* hoặc bạn có thể dùng none nếu không muốn thay đổi khi hover */
    }


.telegram-chat-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: aqua;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

    .telegram-chat-btn img {
        width: 24px;
        height: 24px;
    }

    .telegram-chat-btn:hover {
        background-color: #c5ced8;
    }