@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
body {
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000;
}
a {
    color: white;
    text-decoration: none;
}
td a{
    color: black;
    text-decoration: underline;
}
.adddiv{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    margin-bottom: 5px;
}
.adddiv .custom-button{
    margin-left: 20px;
}
.parallax{
    background-image: url('../Images/BlackParallax.png');
    max-height: 2000px; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 10%;
    padding-top: 15%;
    padding-bottom: 20%;
}
.helloparallax{
    background-image: url('../Images/BlackParallax.png');
    max-height: 2000px; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 10%;
    padding-top: 30%;
    padding-bottom: 20%;
}
.navbar {
    background-color: #030303d3;
    padding: 10px 0;
    position: relative;
    display: flex;
    position: fixed;
    align-items: center;
    height: 80px;
    max-height: 100px;
    width: 100%;
    z-index: 1000;
}
.navbar .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.navbar .logo img {
    height: 80px;
    display: block;
}
.nav-links {
    margin-left: auto;
}
.navbar a {
    color: white;
    text-decoration: none;
    vertical-align: middle;
}
.footer {
    background-color: #000000;
    color: white;
    text-align: center;
    padding: 20px 0;
    height: 200px;
}
.footer p {
    margin: 0;
    padding-bottom: 10px;
}
.footer a{
    text-decoration: underline;
}
.custom-button {
    font-family: "Roboto", sans-serif;
    background-color: #1a1a2e;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 30px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.custom-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background-color: #000000;
    transition: all 0.3s ease;
    border-radius: 50%;
    z-index: -1;
    transform: translate(-50%, -50%) scale(0);
}
.custom-button:hover::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.9;
}
.custom-button:hover {
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
}
.custom-button:active::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: ripple 0.6s ease-out;
    z-index: -1;
}
@keyframes ripple {
    to {
      transform: translate(-50%, -50%) scale(4);
      opacity: 0;
    }
}
.custom-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.8) 50%,
      rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: all 0.3s ease;
}
.custom-button:hover::after {
    left: 100%;
    transition: all 0.5s ease;
}
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    border-radius: 5px;
}
.modal-content {
    background-color: #554d4dc5;
    color: #ffffff;
    margin: 10% auto;
    padding: 20px;
    width: 40%;
    border-radius: 10px;
    text-align: center;
    align-content: center;
    justify-content: center;
}
.modal-content .custom-button:hover::before{
    background-color: red;
}
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-family: "Roboto", sans-serif;
}
.close:hover,
.close:focus {
    color: white;
    text-decoration: none;
    cursor: pointer;
}
.closeTwoFa {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-family: "Roboto", sans-serif;
}
.closeTwoFa:hover,
.closeTwoFa:focus {
    color: white;
    text-decoration: none;
    cursor: pointer;
}
.content{
    background-color: #000000;
    color: #000000;
    width: 100%;
    height: auto;
    padding-bottom: 10px;
    justify-content: center;
    text-align: center;
    align-items: center;
}
.content .content-body {
    margin: 0;
    padding: 0;
    display: flex;
}
.content .Hello-title {
    display: flex;
    justify-content: center;
    text-align: center;
}
.content .product-img {
    width: 40%;
    border-radius: 50px;
    margin: 0px 10px;
    display: flex;
    justify-content: left;
}
.content .text-container {
    width: 50%;
    display: flex;
    flex-direction: column;
    margin-left: 9%;
    margin-right: 1%;
}
.content p {
    text-align: justify;
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-size: large;
    margin: 0;
    padding: 0;
}
.content h3 {
    font-size: 60px;
    font-family: "Roboto", sans-serif;
    color: #ffffff;
    text-align: right;
    margin: 100px 0 0 0; 
    padding: 0;
}
.content table{
    margin: 0 10%;
    margin-bottom: 10px;
}
.text-container a {
    align-self: flex-end;
    cursor: pointer;
    margin-top: 100px;
}
.content .custom-button:before {
    background-color: #434446;
}
table {
    border-collapse: collapse;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: auto;
    margin-top: 10px;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    max-width: 100%;
    min-width: 80%;
    margin: auto;
}
table thead {
    background-color: #363535;
    color: white;
}
table th, table td {
    padding: 15px;
    text-align: left;
    max-width: 20%;
    word-break: break-all;
}
table tbody tr:nth-child(even) {
    background-color: #ffffff;
}
table th {
    background-color: #363535;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
}
table td {
    border-bottom: 1px solid #ddd;
}
table tbody tr:last-child td {
    border-bottom: none;
}
table td:first-child {
    border-left: 5px solid #363535;
}
table tbody tr:hover td:first-child {
    border-left-color: #1a1a2e;
}
.btn-icon-m {
    width: 50px;
    height: 50px;
    background-color: #333;
    border: none;
    border-radius: 50%;
    padding: 5px;
    cursor: pointer;
}
.btn-icon-m img {
    width: 80%;
    height: auto;
}
.btn-icon-m:hover {
    background-color: #444;
}
.accounttable .btn-icon {
    width: 30px;
    height: 30px;
    background-color: #333;
    border: none;
    border-radius: 50%;
    padding: 5px;
    cursor: pointer;
}
.btn-icon-e {
    width: 50px;
    height: 50px;
    background-color: #333;
    border: none;
    border-radius: 50%;
    padding: 5px;
    cursor: pointer;
}
.btn-icon-e img {
    width: 80%;
    height: auto;
}
.btn-icon-e:hover {
    background-color: #c40000;
}
.bienvenido{
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 10px;
    border-radius: 20px;
}
.bienvenido h1{
    font-family: "Roboto", sans-serif;
}
.banner {
    height: 250px;
    width: 250px;
    margin-bottom: 5px;
    position: relative;
    display: inline-block;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}
.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit; 
    background-size: cover;
    background-position: center;
    transition: filter 0.3s ease-in-out;
}
.banner-text {
    position: absolute;
    top: -10px;
    left: -13px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 15px;
    opacity: 0; 
    transition: opacity 0.3s ease-in-out;
}
.banner:hover::before {
    filter: blur(5px);
}
.banner:hover .banner-text {
    opacity: 1;
}
.banner-text p{
    width: 90%;
    font-size: 1.2em;
}
.chart-container {
    padding: 20px;
    height: 40vh;
    width: 80%;
    max-width: 600px;
    margin: 0 auto;
}
.accounttable {
    max-width: 100%;
    font-family: "Roboto", sans-serif;
    margin-bottom: 20px;
}
.accounttable th, .accounttable td {
    padding: 10px;
    text-align: left;
    max-width: 100px;
    word-break: break-all;
}
.accounttable th {
    background-color: #1a1a2e;
    color: white;
    font-weight: bold;
}
.accounttable th:hover {
    background-color: #000;
}
.accounttable tr:nth-child(even) {
    background-color: #f2f2f2;
}
.accounttable tr:hover {
    background-color: #ddd;
}
.accounttable td {
    font-size: 1rem;
    color: #333;
}

.small-desc {
    font-size: 1em;
    font-weight: 400;
    line-height: 1.5em;
    color: #452c2c;
}
.small-desc {
    font-size: 1em;
}
.go-corner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 2em;
    height: 2em;
    overflow: hidden;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #80868d, #1a1b1d);
    border-radius: 0 4px 0 32px;
}
.go-arrow {
    margin-top: -4px;
    margin-right: -4px;
    color: white;
    font-family: courier, sans;
}
.card {
    display: inline-block;
    position: relative;
    max-width: 300px;
    height: 320px;
    background-color: #f2f8f9;
    border-radius: 10px;
    padding: 2em 1.2em;
    margin: 12px;
    text-decoration: none;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(to bottom, #9b9b9b, #6b6e6e);
    font-family: "Roboto", sans-serif;
}
.card:before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -16px;
    right: -16px;
    background: linear-gradient(135deg, #2e2f31, #131518);
    height: 32px;
    width: 32px;
    border-radius: 32px;
    transform: scale(1);
    transform-origin: 50% 50%;
    transition: transform 0.35s ease-out;
}
.card:hover:before {
    transform: scale(33);
}
.card:hover .small-desc {
    transition: all 0.5s ease-out;
    color: rgba(255, 255, 255, 0.8);
}
.card .card-title {
    font-family: "Roboto", sans-serif;
    color: #262626;
    font-size: 1.5em;
    line-height: normal;
    font-weight: 700;
    margin-bottom: 0.5em;
    text-align: left;
}
.card:hover .card-title {
    transition: all 0.5s ease-out;
    color: #ffffff;
}
.Hello-title{
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #ffffff;
}
.search-container {
    position: relative;
    width: 300px;
    margin: 10px auto;
}
.search-container input[type="text"] {
    width: 100%;
    padding: 10px 0 10px 15px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 50px;
    outline: none;
    transition: border 0.3s ease;
}
.search-container input[type="text"]:focus {
    border-color: #333;
}
.search-container button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
}
.search-container button img {
    width: 16px;
    height: 16px;
}
.dropdown { 
    position: relative;
    display: inline-block;
    margin-right: 10px;
}
.dropbtn {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.dropdown-content {
    position: absolute;
    background-color: #1a1a2e;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    top: 0px;
    right: 0;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.dropdown-content a {
    color: #ffffff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
.dropdown-content a:hover {
    background-color: #333;
    border-radius: 5px;
}
.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown:hover .dropbtn {
    background-color: #333;
}
.shop-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.product-div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 300px;
    height: 400px;
    margin: 0px 20px;
}
.product-div img{
    width: 250px;
    border-radius: 10px;
}
.product-div h2{
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-weight: 10;
    font-style: normal;
}
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.747);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s;
}
.loader {
    width: 80px;
    height: 80px;
    position: relative;
}
.loader-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid #555;
    animation: spin 1.5s linear infinite;
}
.loader-inner::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 4px solid transparent;
    border-radius: 50%;
    border-top: 4px solid #777;
    animation: spin 2s linear infinite;
}
.loader-inner::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 4px solid transparent;
    border-radius: 50%;
    border-top: 4px solid #999;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
body::-webkit-scrollbar {
    width: 12px;
}
body::-webkit-scrollbar-track {
    background: #a4a4a4;
    border-radius: 10px;
}
body::-webkit-scrollbar-thumb {
    background-color: #1a1a1a;
    border-radius: 10px;
    border: 2px solid #a4a4a4;
}
body::-webkit-scrollbar-thumb:hover {
    background-color: #000000;
}