/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

/* SIDEBAR STYLES */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 60px;
    background-color: #2c3e50;
    overflow: hidden;
    transition: width 0.3s ease;
    z-index: 1000;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

.sidebar:hover {
    width: 250px;
}

.sidebar a {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #34495e;
}

.sidebar a:hover {
    background-color: #34495e;
}

.nav-icon {
    font-size: 18px;
    width: 20px;
    text-align: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.nav-text {
    white-space: nowrap;
    font-size: 16px;
}

/* MAIN CONTENT */
.main-content {
    margin-left: 60px;
    padding: 20px;
    min-height: 100vh;
    transition: margin-left 0.3s ease;
}

/* LOGO */
.logo {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
}

/* TYPOGRAPHY */
h1 {
    color: #2c3e50;
    font-size: 2.5em;
    margin-bottom: 15px;
}

h2 {
    color: #2c3e50;
    font-size: 1.5em;
    margin: 20px 0 10px 0;
}
h3 {
    color: #2c3e50;
    font-size: 1.2em;
    margin-bottom: 10px;
}

p {
    color: #272525;
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* CONTENT CARD */
.content-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .sidebar {
        width: 0;
    }
    
    .sidebar:hover {
        width: 200px;
    }
    
    .main-content {
        margin-left: 0;
        padding: 15px;
    }
}

* {box-sizing: border-box;}
body {font-family: Verdana, sans-serif;}
.mySlides {display: none;}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}