:root {
    --bs-body-bg: #000000;
    --bs-body-color: #f5f5f5;
  
}

body {
    background-color: var(--bs-body-bg);
	background-image: url('/images/image16.png');
    background-size: cover;         
    background-position: center;     
    background-repeat: no-repeat;   
    background-attachment: fixed;   
	
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25); /* Adjust opacity as needed */
    z-index: -1;
}

.table {
    margin: 0 auto;
    margin-top: 30px;
	background: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 22px rgba(0, 255, 255, 0.5)
}

.table td {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	background: white;
	color: black;
	font-weight: bold;
}

.table th {
	background:#36c1e7;
	text-transform: uppercase;
}

.table td, .table th {
    height: 50px; /* You can adjust this */
    vertical-align: middle; /* Optional: centers text vertically */
}

h2.text-center {
    margin-top: 30px;
    font-weight: bold;
}

.ranking-wrapper {
    padding-bottom: 50px;
}

.btn{
	font-weight: bolder;
	border-radius: 12px;
	box-shadow: 0 0 22px rgba(0, 255, 255, 0.5)
}

/* Smooth transition for background, border, and scale */
button.btn {
    transition: all 0.3s ease;

}

/* Scale up on hover */
button.btn:hover {
    transform: scale(1.05);
}

/* Optional pulse effect for active selection */
.btn-primary, .btn-secondary {
    animation: pulseIn 0.2s ease-in;
	
}

@keyframes pulseIn {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.05);
        opacity: 1;
    }
}