/* Initial CSS styles for the page */

* {
  cursor: url("../../assets/img/cursor.png"), auto;
  box-sizing: border-box;
}

.chand {
  cursor: url("../../assets/img/cursor3.png"), auto !important;
}

html,
body {
  font-family: Arial, sans-serif;
  background-color: #eeeeee;
  margin: 0;
  padding: 0;
  height: 100vh;
}

.breadcrumb-area {
  background: #3b5998;
  padding: 25px 0;
  color: #fff;
  font-size: 18px;
}

.breadcrumb-content ul {
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-content ul li {
  display: inline-block;
}

.breadcrumb-content ul li:nth-child(n + 2) {
  margin-left: 10px;
}

.breadcrumb-content ul li a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb-content ul li.active a {
  color: #ffcf01;
}

.active {
  color: #18c77b;
}

/* Styles to make the page visually captivating */
.alert {
  text-align: center;
  padding: 15px;
  font-size: 18px;
  border-radius: 5px;
  margin: 20px auto;
  /* Center the alert horizontally */
}

.alert-danger {
  background-color: #ff6b6b;
  color: #fff;
}

.alert-success {
  background-color: #5cb85c;
  color: #fff;
}

/* Additional styles for the login form */
.login-form {
  text-align: center;
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.login-title {
  font-size: 24px;
  margin: 0;
  color: #333;
}

/* CSS for the responsive layout of the page */
.page-section {
  padding: 60px 0;
}

/* Additional fantasy and effects */
.alert h4 {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #eeeeee;
}

.content {
  flex: 1;
  padding: 20px;
  /* Adjust as needed */
}

.footer {
  background-color: #333;
  color: #fff;
  text-align: center;
}

.footer h4 {
  padding: 6px 0 4px 0;
  font-size: 18px;
}

/* CSS Styles for the "Go Back" Link */
.go-back-link {
  text-decoration: none;
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  margin-top: 40px;
}

.go-back-link:hover {
  background-color: #0056b3;
  color: #fff;
}

.res-bomb,
.res-gold,
.res-keys {
  font-size: 20px;
}

.res-gold {
  color: gold;
}

.res-bomb {
  color: rgb(255, 0, 132);
}

.res-keys {
  color: rgb(23, 7, 246);
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .breadcrumb-content ul li {
    display: block;
    margin-bottom: 10px;
  }

  .breadcrumb-content ul li a {
    font-size: 16px;
  }

  .breadcrumb-content {
    padding: 15px 0;
  }
}

.error-container {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 100px auto;
  max-width: 400px;
}

.error-container h1 {
  text-align: center;
  font-size: 48px;
  color: #ff0000;
  margin: 0;
}

.error-container p {
  font-size: 18px;
  color: #333;
}

.error-container a {
  text-decoration: none;
  color: #007bff;
  font-weight: bold;
}

.error-container a:hover {
  text-decoration: underline;
}

#loading {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  user-select: none;
  /* Add a semi-transparent background to dim the content */
  z-index: 9999;
  /* Set a high z-index to ensure it appears in front */
}

#loading img {
  position: absolute;
  user-select: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Add padding and margin to input fields */
.user-details .form-group input[type="text"],
.user-details .form-group input[type="number"],
.user-details .form-group input[type="password"] {
  padding: 10px;
  margin: 5px 0;
  width: 90%;
  max-width: 100%;
  /* Set the maximum width to 100% */
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Style labels for the form */
.user-details .form-group label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

/* Style user photo */
.user-photo img {
  max-width: 100%;
  height: auto;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 5px;
}

/* Style form container */
.header-container {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 50%;
  padding: 20px;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
}

.header-container h4 {
  text-align: center;
}

/* Style the label and value to be displayed inline */
.inline-label,
.externals {
  display: flex;
  /* align-items: center; */
}

/* Add some spacing between the label and value */
.inline-label label {
  margin-right: 10px;
}

.externals div {
  margin: 5px;
}

.externals div:nth-child(2) {
  margin-left: 20px;
}

.passwords {
  display: none;
}

.passwords hr {
  width: 90%;
}

.passwords .no-password-alert{
  text-align: center;
  color: #d14141;
}

.user-details .error {
  color: #007bff;
}

.save-result {
  display: none;
  background-color: #b8b6c4;
  border: 1px solid #000;
  width: 90%;
  padding: 6px;
  border-radius: 5px;
  text-align: center;
}

.resources {
  width: 90%;
  border-radius: 4px;
  border: 0.5px solid #918d8d;
  /* Border properties */
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
  /* Shadow properties */
  padding: 6px;
  margin: 5px 0 10px 0;
}

.resources h5 {
  text-align: center;
}

.user-photo-and-details {
  display: block;
}

.profile-picture {
  user-select: none;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.profile-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}

.user-details {
  margin-top: 10px;
}

.user-details p {
  font-weight: bold;
  margin: 0;
}

/* skins */

.circular {
  width: 150px;
  height: 150px;
  border-radius: 75px;
  -webkit-border-radius: 75px;
  -moz-border-radius: 75px;
  background-repeat: no-repeat;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
  -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
}

.circular img {
  opacity: 0;
  filter: alpha(opacity=0);
}

.choose_skin {
  border-radius: 7px;
  color: white;
  font-weight: bold;
  background-color: green;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.9);
}

.sell_skin {
  border-radius: 7px;
  color: #cc6000;
  font-weight: bold;
  background-color: #ccc;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.current {
  color: black;
  font-weight: bold;
  background-color: #ccc;
  padding: 5px 8px;
  margin: 3px 3px;
  border-radius: 5px;
}

.skins-view {
  position: relative;
}

.skins-view ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style-type: none;
}

.skins-view ul li {
  margin: 5px;
  flex: 1 0 calc(10% - 20px);
  /* Adjust the width as needed */
  text-align: center;
}

.paging {
  bottom: 0;
  text-align: center;
}

.paging span {
  margin-left: 18px;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  user-select: none;
}

.my-skins h4,
.my-skins p,
.get-new-skins h4 {
  text-align: center;
}

#btn_reset,
#btn_code,
#btn_newpass {
  margin-top: 10px;
}

.new-skin,
.my-skin {
  max-width: 180px;
}

.active-page {
  color: rgb(32, 93, 155);
  background-color: #b6c4b8;
  padding: 3px;
  border-radius: 3px;
}

/* Clan management */
.navbar {
  background-color: #111;
  /* Dark grey */
  border-bottom: 3px solid teal;
  /* Teal border */
  border-radius: 0 !important;
}

.navbar-expand-lg * {
  color: #fff;
}

.sidebar {
  background-color: #222;
  /* Lighter black */
  color: #ddd;
  /* Light grey text */
  padding: 15px;
  min-height: 90vh;
  /* Full height */
}

.content-area {
  background-color: #333;
  /* Dark grey */
  min-height: 90vh;
  /* Full height */
}

.logo {
  width: 200px;
  /* Adjust as needed */
  height: auto;
}

.clan-view {
  padding: 10px;
  margin: 10px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  /* text-align: center; */
  /* user-select: none; */
}

.clan-view table {
  width: 100%;
}

.clan-view tr {
  color: white;
}

.clan-about li {
  list-style-type: none;
}

.clan-about li:before {
  content: "➢ ";
}

.row-me {
  background-color: #3c5266 !important;
}

/* DataTable label */
#table-clan_wrapper label,
#table-clan_info,
#table-clan_paginate {
  color: greenyellow;
}

/* CSS for changing row color on hover */
#table-clan tr:hover {
  background-color: #663c3c !important;
  /* Change the background color to your desired value */
}

.shortways ul {
  list-style-type: disc;
}

.shortways ul li:hover {
  color: gold;
}

span.error,
span.success {
  color: #fff;
  display: block;
  margin: 0 auto;
  text-align: center;
}

#gftcode {
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
}

.new-skin {
  position: relative;
}

.buy-button,
.set-button {
  position: absolute;
  padding: 5px 10px;
  border-radius: 5px;
  background-color: rgba(205, 214, 84, 0.8);
  color: #fff;
  display: none;
  user-select: none;
}

.buy-button {
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.set-button {
  background-color: rgba(32, 255, 88, 0.8);
  transform: translate(-100%, -260%);
}

.lang-profile {
  background-color: rgba(41, 38, 38, 0.1);
  border-radius: 5px;
}

.lang-profile a {
  padding: 4px;
}

.lang-profile a:hover {
  background-color: rgba(136, 127, 127, 0.5);
}

.lang-active {
  background-color: #a4c9b9;
}

.split-skins {
  margin: 20px;
}

/* Custom styling for the range input */
.custom-range {
  -webkit-appearance: none;
  width: 100%;
  height: 15px;
  border-radius: 5px;
  outline: none;
  padding: 1px;
  background: linear-gradient(to right, green 0%, green 20%, orange 20%, orange 80%, red 80%, red 100%);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
}

.custom-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #007bff;
}

.custom-range::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #007bff;
}

#gamount {
  color: #75692a;
}

.container .convert-values {
  display: inline-block;
  width: 35%;
  max-width: 60%;
  background-color: #ffffff;
  border: 1px solid #ced4da;
  border-radius: 5px;
  padding: 8px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
  margin: 5px;
}

.container .fg2 label {
  width: 65px;
}

.container .fg2 {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.user-info {
  display: grid;
  text-align: left;
  grid-template-columns: auto auto;
}

.user-info p {
  font-weight: bold;
  text-align: right;
  padding: 0px;
}

.user-info span {
  font-weight: bold;
  color: #66F;
  padding-left: 4px;
}

