/**
*! style rule for Header 
**/
.header__left--text{
  font-size: var(--body);
  color: var(--color-white-90 );
  font-family: var(--font-2);
}

.header__left--btn{--color-white-75
align-self: start;
margin-top: 20px;
}

.body__index{
	background-color: var(--color-wws-10 );
}


/**
*! style rule for sectionOne 
**/

.sectionOne{
  display: grid;
  gap: 30px;
  padding: 40px 0;
}

.sectionOne__content--text{
  font-family: var(--font-2);
  font-size: var(--sub);
  font-weight: bold;
  color: var(--color-green-100);
}

.sectionOne__content__wws--text{
  font-family: var(--font-2);
  font-size: var(--sub);
  font-weight: bold;
  color: var(--color-wws-100);
}



.sectionOne__logo{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.sectionOne__btn{
 justify-self: center;
 margin-top: 20px;
}

/**
*! style rule for sectionTwo and SectionThree
**/

.sectionTwo__right--text,
.sectionThree__left--text{
  color: var(--color-wws-100);
  font-family: var(--font-2);
  font-size: var(--body);
}

.sectionTwo__right--btn,
.sectionThree__left--btn{
  align-self: start;
  margin-top: 15px;
}

.section__center--btn{
  align-self: center;
  margin-top: 15px;
}

.section__center__disabled--btn{
  align-self: center;
  margin-top: 15px;
background-color: rgba(39, 174, 96, 0.5);
color: white;
}

/**
*! style rule for sectionFour
**/

.sectionFour{
  display: grid;
  gap: 30px;
  margin-top: 15px;
  margin-bottom: 30px;
}

.secttionFour__content--text{
  font-size: var(--sub);
  font-family: var(--font-2);
}

.sectionFour__cards{
  display: grid;
   grid-template-columns: repeat(4,1fr);
   gap: 30px;

}

[class ^='sectionFour__cards--']{
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-radius: 5px;
  padding: 20px 25px;
}

[class ^='sectionFour__cards--'] .name{
  font-family: var(--font-1);
  font-size: var(--h5);
  font-weight: bold;
}

[class ^='sectionFour__cards--'] .position{
  font-family: var(--font-2);
  color: var(--color--dark-75);
  text-transform: uppercase;
}

.sectionFour__btn{
  justify-self: center;
}

/* !media queries are here */

@media (max-width: 1200px) {
  .sectionOne__logo{
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

@media (max-width : 768px) {
  .header__right,
  .sectionthree__right{
    order: 0;
  }

  .header__left,
  .sectionThree__left{
    order: 1;
  }

  .sectionFour__cards{
     grid-template-columns: repeat(2,1fr);  
  }
}

@media (max-width: 568px) {
  .sectionOne__logo{
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    justify-self: center;
  }

  .sectionFour__cards{
    grid-template-columns: repeat(1,1fr);  
 }
}

table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	background-color: #fff;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
th, td {
	border: 1px solid #ddd;
	padding: 12px;
	text-align: center;
}
th {
	background-color: #122C3D;
	color: white;
}
td {
	background-color: #f9f9f9;
}
a {
	text-decoration: none; /* Removes underline from link */
}
button {
	padding: 10px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	font-weight: bold;
}
.download-btn {
	background-color: #27AE60;
	color: white;
}
.download-btn:hover {
	background-color: #219653;
}
.locked-btn {
	background-color: #f44336;
	color: white;
}
.locked-btn:hover {
	background-color: #e7352c;
}
.locked-btn::after {
	content: '\1F512'; /* Unicode for lock icon */
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	font-size: 18px;
	margin-left: 10px; /* Space between text and lock */
	border-left: 1px solid white; /* Divider between text and lock */
	padding-left: 10px;
}
.button-container {
	position: relative;
}