/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/css.css to edit this template
*/
/* 
    Created on : Feb 20, 2025, 12:37:31 AM
    Author     : haivanbenjamin
*/

/*Most styling for project 1*/
body {
    background-color: #F0F8FF;
    margin: 0;
    font-family: Arial, sans-serif;
}

a:hover {
    font-size: 150%;
}

/*Navigation bar styling*/
.navbar {
    background-color: #F0F8FF;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
}

.logo {
    color: rgb(255, 150, 150);
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav-links img {
    width: 24px;
    height: 24px;
    margin-bottom: 5px;
}

.nav-links a {
    color: black;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
    text-align: center;
}

.nav-links a:hover {
    color: #FF0000;
}

/*Styling for home page*/
.myName{
    display: grid;
    place-items: center;
    height: 80vh;
}

.haivan {
    border: 5px solid black;
    border-radius: 10px;
}

/*Most styling for personal page*/
#about-me h2 {
    color: red;
}

#hobbies h2 {
    color: darkblue;
}

#education h2 {
    color: green;
}

.college-degree {
    font-weight: bold;
}

.diploma {
    font-style: italic;
}

.certification {
    text-decoration: underline;
}

/*Styling for schedule page*/
table {
    width: 80%;
    border-collapse: collapse;
    margin: 20px auto;
    font-size: 18px;
    text-align: center;
    border-radius: 10px;
}
  
th, td {
    border: 2px solid #333;
    padding: 10px;
    text-align: center;
}  
  
th {
    background-color: #555;
    color: white;
}
  
tr:nth-child(even) {
    background-color: #f2f2f2;
}
  
tr:hover {
    background-color: lightyellow;
}

/* Primary list (months) - Arabic numbers */
ol {
  list-style-type: decimal; /* Ensures Arabic numbers (1, 2, 3...) */
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  margin-left: 20px;
}

/* Secondary list (events & holidays) - Uppercase letters */
ol ol {
  list-style-type: upper-alpha; /* Ensures uppercase letters (A, B, C...) */
  margin-left: 20px;
}

/* Style the primary level */
ol > li {
  font-weight: bold;
  color: #2c3e50; /* Dark blue-gray */
  margin-top: 10px;
}

/* Style sublist items */
ol ol li {
  font-weight: normal;
  color: #555; /* Slightly lighter gray */
}

/* Style links (holidays/special events) */
ol ol li a {
  color: #2980b9; /* Blue links */
  text-decoration: none;
  font-weight: bold;
}

ol ol li a:hover {
  text-decoration: underline;
  color: #1a5276; /* Darker blue on hover */
}

/* Styling for Account page*/
#account-form {
    max-width: 400px; /* Restricts width */
    margin: auto; /* Centers the form */
    display: flex;
    flex-direction: column;
    gap: 15px; /* Adds space between sections */
    padding: 20px;
    background: #f9f9f9; /* Light background */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Adds space between inputs */
}

input {
    width: 100%; /* Makes inputs full-width */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

button {
    padding: 10px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background: #0056b3;
}
