.cards {
padding: 12px;
margin: 10px;
/* height: 200px; */
width: 242px;
height: 208px;
display: inline-block;
border-radius: 20%;
word-wrap: break-word;
min-height: 98px;
/* min-width: 300px; */
}

.cards img {
	width: 110px;
	height: 120px;;
}
/* Set the background color to black and the text color to white */
body {
    background-image: url('../logo.png');
    background-blend-mode: overlay;
    background-size: center;
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgb(43, 43, 43);
    color: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.spinner-container {
    text-align: center;
}
.spinner-border {
    width: 5rem;
    height: 5rem;
}

.container {
    flex: 1;
}

.navbar {
    background-color: rgb(43, 43, 43) !important;
	
}

.navbar-nav li {
    width: 120px;
    text-align: center;

}

.navbar-nav .nav-link {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin: 0 8px;
    position: relative;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.navbar-nav .nav-link:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover:before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.navbar-nav .nav-link:hover {
    color: #ffd700;
    z-index: 2;
    transform: scale(1.2);
}

.navbar a {
    color: white !important;
    padding: 10px 25px;
    border: 1px solid white;
    border-radius: 5px;
    margin-right: 5px;
}

.navbar a:hover {
    background-color: rgb(72, 71, 71);
    color: black;
    text-decoration: none;
}

/* Style the images to zoom in on hover */
img {
    transition: transform 0.2s ease-in-out;
    max-width: 100%;
    width: 100px;
    height: 100px;
    border-radius: 5px;
}

img:hover {
    transform: scale(1.1);
}

.center {
    margin: 0 30px;
}

table {
    border-collapse: collapse;
    margin: 0 10px;
}

table.center {
    border-collapse: collapse;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    text-align: center;
}

th {
    background-color: #04AA6D;
    color: white;
    font-weight: 500;
    padding: 15px;
}

td {
    /* border: 2px solid #000000; */
    /* padding: 5px; */
}

tr:hover {
    background-color: #525252;
    opacity: 0.8;
}

.invite-pix {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5px;
    margin-bottom: 5px;
    background-color: transparent;
    transition: transform 0.2s ease-in-out;
}

.invite-pix:hover {
    transform: scale(1.1);
}

/* Style the links in the footer */
footer a {
    color: white;
    text-decoration: none;
}

footer {
    background-color: rgb(89, 89, 89);
    color: white;
    text-align: left;
    padding: 3px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

.profile-menu {
	position: relative;
	display: flex;
	align-items: center;
	margin-left: 10px;
}

.profile-toggle {
	background: rgba(245,197,24,0.12);
	border: 1px solid rgba(245,197,24,0.35);
	color: #f5c518;
	padding: 7px 18px;
	border-radius: 999px;
	cursor: pointer;
	font-weight: 600;
	font-size: 0.88rem;
	font-family: inherit;
	transition: background 0.2s, border-color 0.2s;
}

.profile-toggle:focus {
	outline: none;
	box-shadow: 0 0 0 2px rgba(245,197,24,0.3);
}

.profile-dropdown {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	background: #1a1d26;
	border: none;
	border-radius: 12px;
	min-width: 160px;
	box-shadow: 0 8px 24px rgba(0,0,0,0.6), 0 2px 8px rgba(0,0,0,0.4);
	z-index: 9999;
	overflow: hidden;
	padding-top: 6px;
}

.profile-dropdown a {
	display: block;
	color: #e8eaf0;
	padding: 10px 16px;
	text-decoration: none;
	font-size: 0.9rem;
	transition: background 0.15s;
}

.profile-dropdown a:hover {
	background: rgba(255,255,255,0.07);
}

.profile-menu:hover .profile-dropdown,
.profile-menu:focus-within .profile-dropdown,
.profile-menu.open .profile-dropdown {
	display: block;
}

.profile-menu.is-logged-out .profile-dropdown {
	display: none !important;
}

.profile-menu.is-logged-out .profile-toggle {
	background: transparent;
	border-color: rgba(255,255,255,0.4);
}
