﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
  color: #0366d6;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}

.topnav-right {
    float: right;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
    background-color: #f8f9fa !important;
    font-family: "Play", Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 800;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px; /* Vertically center the text there */
}
svg text {
    font-family: "Audiowide";
    letter-spacing: 3px;
    stroke: #ff0606;
    font-size: 66px;
    font-weight: 700;
    stroke-width: 1;
    animation: textAnimate 5s infinite alternate;
}

@keyframes textAnimate {
    0% {
        stroke-dasharray: 0 50%;
        stroke-dashoffset: 20%;
        fill: hsl(7deg 100% 50%)
    }

    100% {
        stroke-dasharray: 50% 0;
        stroke-dashoffstet: -20%;
        fill: hsla(189, 68%, 75%,0%)
    }
}
#ipv4{
    color:red;
    font-weight:600;
}


.container {
    max-width: 100%;
}

.pricing-header {
    max-width: 700px;
}

.card-deck .card {
    min-width: 220px;
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

/*.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}*/

.banner {
    font-family: Sacramento, sans-serif;
    font-size: 8em;
    text-align: center;
    /*text-shadow: 3px 3px 20px #9b9498, -2px 1px 30px #deddd7;*/
    color: #fff6a1;
    letter-spacing: 7px;
    text-shadow: 0 0 20px #ffa704, 0 0 40px #ffa704, 0 0 60px #ff1e00;
    animation: flicker 6s infinite;
}

@keyframes flicker {

    15%, 20%, 50% {
        color: #e9ecef;
        text-shadow: none;
    }

    0%, 14%, 16%, 19%, 26%, 49%, 51%, 100% {
        text-shadow: 0 0 20px #ffa704, 0 0 40px #ffa704, 0 0 60px #ff1e00;
        color: #fff6a1;
    }
}

/*.h1, .h2 {
    font-weight: 800;
}*/

.badge {
    font-family: "Play", Verdana, Geneva, Tahoma, sans-serif;
    font-size: 14px;
    text-align: center;
    color: #ffffff !important;
    padding: 3px;
    margin-right: 3px;
}

th, td {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
    white-space: nowrap; /* Ngăn chặn trang web từ việc ngắt dòng trong cell */
    overflow: hidden;
    text-overflow: ellipsis; /* Hiển thị dấu "..." nếu nội dung quá dài */
}

td:hover {
    overflow: visible;
    white-space: normal; /* Cho phép hiển thị đầy đủ nội dung khi hover */
}