@charset "utf-8";
/* CSS Document */
/* COLOURS AND FONTS */
/* #7B297F; /* EI Dark Purple */
/* #BB64BF; /* EI Purple */
/* #464646; /* EI Grey */
/* #000000; /* Black */
/* #FBFEF9; /* Baby Powder */
/* #E30022; /* Cadmium Red */

/* Global Styles */

li {
	margin-left: 50px;
}

/* NAVIGATION */
.nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}

.nav-menu li {
  margin: 0 20px;
}

.nav-menu a {
  text-decoration: none;
  font-weight: bold;
  color: #7B297F; /* EI Dark Purple */
  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: #666;
}

/* CONTACT BUTTON FOR ALI */
.contact-link {
  margin-top: 10px;
}

.btn {
  background-color: #4CAF50;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover {
  background-color: #3e8e41;
}

.bio-box-ali {
    position: relative;
    display: inline-block;
	vertical-align: top;
	height: 350px;
	width: 250px;
	text-align: center;
	padding: 20px;
	max-width: 200px;
	border: 1px solid #ccc;
	border-radius: 5px;
	margin: 5px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* SCHEME OF WORK TABLE */

.career-path {
	display: flex;
	justify-content: center;
}

.my-table {
  width: 80%;
  margin: 0 auto;
  border: 1px solid #464646; /* EI Grey */
}

.my-table th {
	color: #7B297F; /* EI Dark Purple */
}

.my-table td {
	text-align: center;
}

.my-table tr {
	border-bottom: 1px solid #464646; /* EI Grey */
}

.left-column {
  width: 25%;
  padding: 10px;
  font-weight: bold;
}

.right-column {
  width: 75%;
  padding: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .my-table {
    width: 90%;
  }
  li {
	  margin-left: 10px;
  }
}

@media (max-width: 480px) {
  .my-table {
    width: 100%;
    font-size: 14px;
  }
  .left-column, .right-column {
    padding: 5px;
  }
}

/* RESOURCES - STUDENTS */
.data-table {
    border-collapse: collapse;
    width: 100%;
    max-width: 600px;
    margin: 40px auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.data-table th,
.data-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
	width: 50%;
}

.data-table th {
    background-color: #f0f0f0;
    font-weight: bold;
}

.data-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.data-table tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

@media (max-width: 768px) {
    .data-table,
    .data-table thead,
    .data-table tbody,
    .data-table th,
    .data-table td,
    .data-table tr {
        display: block;
    }

    .data-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .data-table tr {
        border: 1px solid #ccc;
        margin-bottom: 10px;
    }

    .data-table td {
        border: none;
        border-bottom: 1px solid #ccc;
        position: relative;
        padding-left: 45%;
    }

    .data-table td:before {
        position: absolute;
        top: 6px;
        left: 6px;
        width: 200px;
        padding-right: 10px;
        white-space: nowrap;
    }

    .data-table td:nth-of-type(1):before {
        content: "Name";
        font-weight: bold;
    }

    .data-table td:nth-of-type(2):before {
        content: "Age";
        font-weight: bold;
    }
}

/* RESOURCES - STUDENTS - IMAGE TABLE */
.image-table {
    border-collapse: collapse;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
}

.image-table td {
    padding: 10px;
    text-align: center;
    vertical-align: top;
    width: 33.33%;
}

.image-table img {
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.image-table p {
    margin-top: 10px;
    font-size: 16px;
    color: #666;
}

@media (max-width: 768px) {
    .image-table,
    .image-table tbody,
    .image-table tr,
    .image-table td {
        display: block;
        width: 100%;
    }

    .image-table td {
        margin-bottom: 20px;
    }

    .image-table img {
        height: auto;
    }
}