html {
    font-size: 16px; /* Explicitly sets 1rem = 16px */
}

body {
    background-color: #333;
    color: #fff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    margin: 20px auto;
    padding: 20px;
    background-color: #444;
    border-radius: 8px;
    max-width: 900px;
}

.nav-pills {
    display: flex;
    width: 100%; /* Full width of the container */
}

.nav-pills .nav-item {
    flex: 1 1 auto; /* Allow items to grow but never shrink */
    text-align: center;
    white-space: nowrap; /* Prevent text from wrapping */
}

.nav-pills .nav-link {
    background-color: #555; /* Original background color */
    color: #fff; /* Original text color */
    width: 100%; /* Ensure the clickable area stretches */
    border-radius: 0; /* Optional: Clean look */
    padding: 8px 12px; /* Comfortable padding */
}

.nav-pills .nav-link.active {
    background-color: var(--bs-success); /* Active state background */
    color: #fff; /* Active state text color */
}

.tab-content {
    margin-top: 20px;
}

.contentbox {
    background-color: var(--bs-success);
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    text-align: left;
    margin: 0 auto;
    display: block;
    width: 100%;
    font-size: 1rem;
    line-height: 1.5;
    overflow-wrap: break-word;
}

.col-md-6:first-child {
    text-align: left;
}

.col-md-6:last-child {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 40px;
}

.col-md-6:last-child .btn {
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.titlebox {
	float: center;
    position: relative;
    background-color: var(--bs-success);
    background-clip: content-box;
	color: white;
	text-align: center;
	max-width: 880px;
	width: 100%;
	height: 0 auto;
	border: 2px  var(--bs-success);
	border-radius: 5px;
	margin: auto;
	font-size: 40px;
}

.titlebox img {
   max-width: 100%;
   height: auto;
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    text-align: center;
    background-color: #444;
    color: #fff;
    font-size: 0.75rem;
}