* {
    color: #1F51FF !important;
    }

.fade-all-edges {
  /* Комбинация 4 градиентов для всех сторон */
  mask-image: 
    linear-gradient(to bottom, transparent, black 20px),
    linear-gradient(to top, transparent, black 20px),
    linear-gradient(to right, transparent, black 20px),
    linear-gradient(to left, transparent, black 20px);

  /* Обязательное условие: пересечение масок */
  mask-composite: intersect;

  /* Поддержка для браузеров на движке Chromium (Chrome, Edge, Opera, Safari) */
  -webkit-mask-image: 
    linear-gradient(to bottom, transparent, black 20px),
    linear-gradient(to top, transparent, black 20px),
    linear-gradient(to right, transparent, black 20px),
    linear-gradient(to left, transparent, black 20px);
  -webkit-mask-composite: source-in;
}

/* The loading overlay cover */
        #page-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: rgba(255, 255, 255, 0.7); /* Semitransparent white */
            z-index: 99999; /* Ensures it sits on top of everything */
            cursor: wait; /* Gives users a visual cue that the page is busy */
            
            /* Crucial property: blocks all clicks, touches, and interactions */
            pointer-events: auto; 
            
            /* Optional centering for a loading text/spinner */
            display: flex;
            justify-content: center;
            align-items: center;
            font-family: sans-serif;
            font-size: 1.5rem;
            transition: opacity 0.3s ease; /* Smooth fadeout */
        }

        /* Classes to control body interaction state */
        body.loading {
            overflow: hidden; /* Prevents scrolling while loading */
            pointer-events: none; /* Disables actions on elements underneath */
        }

.coordinates {
	position: absolute;
	bottom: 0;
	right: 0;
	font: small bold;
	color: red;
	}

html {
    background-image: url(images/empire.png); 
    background-size: cover;
    }
 /* Style the tab */

.header-img {
  float: left;
  margin-right: 10%;
  }

.main {
  margin-top: 3%;
  margin-left: 3%;
  /* width: 80%; */
}

.main-title {
    padding: 14px; 
    text-align: left; 
    font-size: 36px;
    }
    
.tab {
  overflow: hidden;
  background-color: #f1f1f1af;
  }

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: #f1f1f10f;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-weight: bold;
    }

/* Change background color of buttons on hover */
  .tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  background-color: #f1f1f1af;
  font-weight: bold;
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
  margin-top: 3%;
  margin-left: 3%;
} 

.weapon-class table {
width: 900px;
}

.weapon-class tr td {
  border: 1px solid blue;
  vertical-align: top;
  text-align: center;
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 20px;
  width: 300px;
  height: auto;
  
}

.weapon-class td img {
  display: block;
  /*margin-left: auto;
  margin-right: auto;*/
  position: relative;
  left: 10%;
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: red;
  color: white;
  text-align: center;
}

a:link, a:visited {
  text-decoration: none;
  cursor: auto;
}

a:link:active, a:visited:active {
  cursor: auto;
}

a:link:hover {
	text-decoration: underline;
	text-decoration-color: #1F51FF;
	-webkit-text-decoration-color: #1F51FF;
	cursor: pointer;
}

a.member-boss {
        font-size: xx-large;
        font-weight: bold;
}

a.member-advisor {
       font-size: large;
       font-weight: bold;
}

a.member-all {
       font-size: medium;
}

.container {
  width: 25%;
  }
.table_exp_battle {
  border: 1px solid;
  vertical-align: top;
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 20px;
  width: 95%;
  height: auto;
  }
  
.table_exp_battle tr td{
  vertical-align: top;
  text-align: right;
  border: 1px solid;
  vertical-align: top;
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  height: auto;
  color: green;
  }
 select { 
  /* background-color: #0000; */
  background: transparent;
  }

