/* Global Styles */
body {
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, black, silver);
    background-size: cover;
    background-attachment: fixed;
	font-family: 'Titillium Web', sans-serif;
}

/* Header Styles */
.header {
    text-align: center;
    padding: 5px;
}

.modal {
	  display: none;
	  position: fixed;
	  z-index: 1;
	  left: 0;
	  top: 0;
	  width: 100%;
	  height: 100%;
	  overflow: auto;
	  background-color: rgba(0, 0, 0, 0.4);
	  padding-top: 60px;
	}

/* Logo Styles */
.logo {
    width: 400px;
    height: auto;
    padding: 5px;
}

/* Container Styles */
.container {
    background-color: #e6f2ff;
    padding: 20px;
    margin: 10px 2%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    border-radius: 5px;
}

/* Header Styles Inside the Container */
.container h2 {
    font-size: 24px;
    color: #000066;
    margin-bottom: 20px;
	text-align: center;
}
.container h1,
.container h2,
.container h3,
.container h4 {
	text-align: center;
}

.container img {
    max-width: 100%; /* Set the maximum width of the image to 100% */
    height: auto; /* Automatically adjust the height to maintain the aspect ratio */
}

.container a.btn.btn-primary {
	display: inline-block;
	padding: 10px 20px;
	width: 200px;
	background-color: #007bff; /* Button background color */
	color: #fff; /* Button text color */
	text-decoration: none; /* Remove underlines from links */
	border-radius: 5px; /* Rounded corners */
	transition: background-color 0.3s; /* Smooth hover effect */
	margin-top: 20px; /* Adjust the margin as needed */
	text-align: center;
}

/* Hover effect for the button */
.container a.btn.btn-primary:hover {
	background-color: #0056b3; /* Darker background color on hover */
}

/* Styles for the card container */
/* Styles for the card container */
.card-container {
	display: flex;
	justify-content: space-around;
	width: 100%;
	margin-top: 20px;
}

/* Styles for the individual card */
.card {
	background-color: #fff;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
	text-align: center;
	width: 30%; /* Adjust the width as needed */
	margin: 10px; /* Add margin between cards */
}

/* Styles for the card title */
.card h2 {
	font-size: 24px;
	color: #000066;
}

/* Styles for the card content */
.card p {
	font-size: 16px;
	color: #333;
}

.card-crypto {
  width: auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  border: 2px solid #000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-crypto i {
  opacity: 0.5;
}

.left-column {
  font-size: 24px;
  margin-right: 20px;
}

.right-column {
  flex-grow: 1;
}

/* Tab Bar Styles */
.tab-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, grey, black);
    color: white;
    padding: 10px;
    z-index: 1000;
}

.tab-bar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
}

.tab-bar li {
    padding: 10px;
}

.tab-bar a {
    text-decoration: none;
    color: #99caff;
}

/* Copyright Footer Styles */
.copyright-footer {
    background-color: rgba(0, 0, 0, 0);
    color: black;
    text-align: center;
    padding: 50px;
    margin-bottom: 60px;
}

/* Social Icons Styles */
.social-icons {
    margin-bottom: 40px;
    font-size: 15px;
}

.social-icon {
    margin: 0 10px;
    color: black;
    transition: color 0.3s;
}

.social-icon:hover {
    color: white;
}

/* Featured Product Image Styles */
.featured-image-container {
    width: 100%;
    max-width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
}

.featured-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Login Form Styles */
.login-form {
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    width: 70%;
    margin: 0 auto;
}

.login-form h2 {
    color: #000066;
}

.login-form form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-form label {
    margin-top: 10px;
    color: #000066;
    font-weight: bold;
}

.login-form input {
	width: 320px;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 0px;
	text-align: center;
}

/* Style for the icon */
.password-toggle-icon {
      cursor: pointer;
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
}

.icon-toggle {
      position: absolute;
      left: 10px;
      top: 50%;
      transform: translateY(-50%);
    }

.row {
    display: inline;
    vertical-align: middle; /* Optional: Align child elements vertically */
}

.login-form select {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
	text-align: center;
}

.login-form select option {
    font-size: 14px; /* Set the font size for options */
    background-color: #fff; /* Set the background color */
    color: #333; /* Set the text color */
}

.login-form select option:checked {
    background-color: #007bff; /* Set a different background color for the selected option */
    color: #fff; /* Set a different text color for the selected option */
}

/* Login Form Button Styles */
.login-form button {
    background-color: #000066; /* Button background color */
    color: white; /* Button text color */
    padding: 10px 50px; /* Adjust padding to match input boxes */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 40px;
    font-size: 16px; /* Adjust font size to match input boxes */
	width: 100;
}

/* Hover effect for the button */
.login-form button:hover {
    background-color: #000044; /* Darker background color on hover */
}

/* Styles for the "Forgot Password" and "Register Now" links */
.forgot-register-links {
    margin-top: 10px; /* Add spacing between the links and the button */
    text-align: center; /* Center-align the links */
}

.forgot-register-links a {
    text-decoration: none;
    color: #007bff; /* Link color */
    margin: 0 10px; /* Add spacing between the links */
    font-size: 14px; /* Adjust font size */
}

.forgot-register-links span {
    color: #333; /* Color for the separator (the pipe character) */
}

/* Styles for the input group */
.input-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px; /* Add spacing between input groups */
}

/* Styles for the input addon (icon) */
.input-addon {
    background-color: #f8f9fa; /* Background color for the icon container */
    border: 1px solid #ccc; /* Border for the icon container */
    border-radius: 0px; /* Rounded corners for the icon container */
    padding: 6px; /* Padding around the icon */
    margin-right: 0px; /* Add spacing between the icon and input field */
}

/* Styles for the icon */
.input-addon i {
    color: #333; /* Color of the icon */
}

/* Styles for the form control (input field) */
.form-control {
    width: 100%; /* Take up all available width */
    padding: 10px; /* Padding for the input field */
    border: 1px solid #ccc; /* Border for the input field */
    border-radius: 4px; /* Rounded corners for the input field */
}

/* Styles for the alert box */
.alert {
    padding: 15px;
    background-color: #f44336; /* Red background color */
    color: white; /* White text color */
    border-radius: 4px; /* Rounded corners */
    margin-bottom: 15px; /* Spacing between alerts */
}

.alert-success {
	background-color: #4CAF50; /* Green background color */
	color: white; /* White text color */
}

/* Styles for danger alert */
.alert-danger {
	background-color: #f44336; /* Red background color */
	color: white; /* White text color */
}

/* Styles for warning alert */
.alert-warning {
	background-color: #ff9800; /* Orange background color */
	color: white; /* White text color */
}

/* Styles for the close button */
.closebtn {
    margin-left: 15px;
    color: white; /* White text color for the close button */
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

/* Change the close button color on hover */
.closebtn:hover {
    color: black; /* Change to black on hover */
}

/* Table Container Styles */
.table-container {
	overflow-x: auto; /* Enable horizontal scrolling */
}

/* Table Styles */
table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 20px; /* Adjust the margin as needed */
	text-align: center;
}

/* Table Header Styles */
table th {
	background-color: #000066; /* Header background color */
	color: white; /* Header text color */
	font-weight: bold;
	padding: 10px;
	text-align: center;
}

/* Table Row Styles */
table tr:nth-child(even) {
	background-color: #f2f2f2; /* Even row background color */
}

table tr:hover {
	background-color: #ddd; /* Row background color on hover */
}

/* Table Cell Styles */
table td {
	padding: 10px;
	border: 1px solid #ddd;
}

.horizontal-line {
    border-top: 3px solid #000; /* Adjust color and thickness as needed */
    margin: 10px 0; /* Adjust margin to control spacing */
}

/* Style the accordion items */
.accordion-item {
  	background-color: #e6f2ff;
	border: 2px solid #000;
    margin: 1px 2%;
	padding-left: 20px;
	padding-right: 10px;
    display: flex;
    flex-direction: column;
    align-items: auto;
    justify-content: end;
}

.accordion-item h4 {
	margin-top: 10px;
	margin-bottom: 10px;
}

.accordion-item i {
	padding-right: 10px;
}

/* Style the accordion header */
.accordion-header {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

/* Style the accordion content */
.accordion-content {
  display: none;
}

/* Style the accordion button icon */
.accordion-button {
  background: none;
  border: none;
}

.accordion-table {
    background-color: #020548;
    color: #fff;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
  }

  .active,
  .accordion-table:hover {}

  .panel {
    width: 100%; /* Ensure the table takes up the full width of its container */
    padding: 0 0;
    display: none;
    overflow-x: auto;
  	margin-bottom: 18px;
  }

  .panel .table {
    width: 100%; /* Ensure the table takes up the full width of its container */
    white-space: nowrap; /* Prevent text wrapping within table cells */
  }

/* Responsive Styles */
@media (max-width: 768px) {
    .tab-bar {
        font-size: 14px;
    }
    .tab-bar li {
        padding: 5px;
    }
	.card-container {
        flex-direction: column; /* Display cards in a column on mobile */
    }
    .card {
        width: 80%; /* Adjust the width for mobile */
    	margin: 10px auto;
    	height: 15vh;
    }
	.card-crypto {
    	width: auto;
	}
	.container h1,
	.container h2,
	.container h3,
	.container h4 {
		text-align: center;
	}

	
}
