/* css styles */

.MuiBox-root .mui-style-1yuhvjn{
    width: 100% !important;
}

body {
    background-image: url("data:image/svg+xml,%3Csvg id='visual' viewBox='0 0 900 600' width='900' height='600' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1'%3E%3Crect x='0' y='0' width='900' height='600' fill='%23FFFFFF'%3E%3C/rect%3E%3Cpath d='M0 313L450 387L900 300L900 601L450 601L0 601Z' fill='%23f8f7fd' stroke-linecap='square' stroke-linejoin='bevel'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: top;
    background-size: 100%;
    background-attachment: fixed;
}

.navbar{
    border: 0px;
    border-bottom: 1px;
    border-color: grey;
    border-style: dashed;
    padding: 0px;
}

.navbar-title{
    font-family: 'amsterdam';
    font-size: 1.75em !important;
    color: black !important;
}

.nav-footer{
    background-color: white !important;
}

.quarto-title-banner{
    background: transparent;
}

.page-columns .column-body-outset table{
    background-color: transparent;
}

#quarto-appendix.default{
    background: transparent !important;
}

/* Home page tweaks */

#neeldhara-misra h1{
    font-family: 'amsterdamkingdom';
    font-size: 160%;
}

.rounded-corners{
    border-radius: 15px;
}

.baranyai{
    margin-top: 70px;
}

.profilepic{
    width: 70%;
    transform: rotate(7deg);
}
.centered-text{
    text-align: center;
}

.small-text{
    font-size: 70%;
}

.pull-up-social{
    position:relative;
    top: -270px;
}

.pull-up{
    position:relative;
    top: -250px;
}

/* Collapsibles */

.collapsible {
    background-color: transparent;
    width: 100%;
    color: #1d90e2;
    border: none;
    outline: none;
    font-size: 15px;
  }

.collactive, .collapsible:hover {
    background-color: transparent;
}

.collcontent {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    background-color: transparent;
}

/* Modals */


/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}


/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    text-align: center;
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 42%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.7s;
    animation-name: animatetop;
    animation-duration: 0.7s;
}


.close {
    position: absolute;
    top: 0;
    right: 0;
    color: rgba(0,0,0,0.3);
    height: 30px;
    width: 30px;
    font-size: 30px;
    line-height: 30px;
    text-align: center;
}

.close:hover,
.close:focus {
    color: #000000;
    cursor: pointer;
}


.open {
    display: block;
}


/* Add Animation */
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0px; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0px; opacity:1}
}

/* The Close Button */
.close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
}

.modal-body {padding: 2px 16px;}

.modal-footer {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
}




/* -------------------- */
/* Profile Image Styling */
/* -------------------- */

.profile-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.profile-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    font-size: 3rem;
    font-weight: bold;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.avatar-placeholder:hover {
    transform: scale(1.05);
}

/* Responsive design for profile */
@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .avatar-placeholder {
        width: 120px;
        height: 120px;
        font-size: 2.5rem;
    }
}

/* -------------------- */
/* Quotes in the Footer */
/* -------------------- */


/* Slideshow container */
.slideshow-container {
  position: relative;
}

/* Slides */
.mySlides {
  display: none;
  padding: 7px;
  text-align: center;
}

/* Add a blue color to the author */
.author {color: cornflowerblue;}