/********** Customise logo, and footer disclaimer **********/
/* Position the corporate logo in the top right of the page */

/* BG Archive
 * conic-gradient(at 85% 45%, #ffe6f0, #cc33ff, #ffe6f0);
*/


.reveal {
  background-image: linear-gradient(to right, #79d2a6 , white);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 2%;
}


/* UL Style  */

.reveal ul li {
  list-style-type: disc !important; /* Or circle, none, etc. */
}

/* UL Style ends  */


/* Inline math */
.reveal .mjx-math {
  color: #ffe6ff; /* or your preferred color */
}

/* Display math */
.reveal .mjx-container {
  color: #ffe6ff; /* same color for block equations */
}

body {
  /* 
 background:  conic-gradient(at 85% 45%, pink, tomato, pink);
 background-image: linear-gradient(red, yellow);
 background:  radial-gradient(circle, white, white, green);
 background-image: conic-gradient(at 85% 55%, #ffff80, #0099ff, #ffff80);
  */
  background-image: conic-gradient(at 85% 55%, #33ff33, #008ae6, #33ff33);
    }
    

/*
body:after {
content: url(pcc2.png);
  position: fixed;
  top: 15px;
  right: 50px;
  height: 55px;
  width: 55px;
}
*/

/*
body:before {
content: url(logo2.png);
  position: fixed;
  top: 15px;
  left: 10px;
  height: 40px;
  width: 40px;
}

 To reveal on click */

#rev { 
  cursor:pointer;
}


#thanks {
  padding: 100px 0;
  font-size: 80px;
  color: yellow;
  font-family: "Times New Roman", Times, serif;
  text-align: center;
}

.la {
    text-align: left;
    list-style-type: upper-roman;

}

.big{
    font-size: 10px;
}

.bluetext {
  color: blue;
  font-family: "Times New Roman", Times, serif;
  background-color:  none;
  /* background-image: linear-gradient(to right, #f5f2f3 , white);*/
}

blockquote {
  background: #f9f9f9;
  border-left: 10px solid #ccc;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  quotes: "\201C""\201D""\2018""\2019";
}
blockquote:before {
  color: #ccc;
  content: open-quote;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}

/* Style/position the footer text */
#header-footer .slide-footer {
    position: fixed; 
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    text-align: center;
    font-size: 100%;
}

.container{
    display: flex;
}
.col{
    flex: 1;
}

div.gallery {
  margin: 5px;
  border: 1px solid #ccc;
  float: left;
  width: 220px;
  font-size: 22px;
  font-family: "Times New Roman", Times, serif;
}

div.gallery:hover {
  border: 1px solid #777;
}

div.gallery img {abstraction-green-vector-power-wallpaper
  width: 100%;
  height: auto;
}

div.desc {
  padding: 15px;
  text-align: center;
}

.box  { width: 300px;
  border: 15px solid green;
  padding: 50px;
  margin: 20px;
  color: yellow;
  }
  
  /* Create two equal columns that floats next to each other */
.column {
  float: left;
  width: 50%;
  padding: 10px; /* Should be removed. Only for demonstration */
}

.reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5 {
                  text-transform: none;
		  }

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
 
td, th {
    border: 1px solid grey;
}

img {
  border: 0px solid #ddd;
}

.nob ul {
list-style-type: none;
}

/* Menu colors

/* Styling for the common footer */
#common-project-footer {
    position: fixed; /* Keep it fixed at the bottom */
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Dark, semi-transparent background */
    color: white; /* White text */
    padding: 5px 10px;
    box-sizing: border-box;
    z-index: 1000; /* Ensure it's on top of other content */
    font-size: 0.8em;
    text-align: center;
    border-top: 1px solid #555;
}

/* Ensure reveal.js slides have space for the footer */
.reveal .slides {
    padding-bottom: 40px; /* Adjust this value based on your footer's height */
    box-sizing: border-box; /* Include padding in element's total width and height */
}

/* Optional: If you want a marquee effect for the footer text */
.marquee-effect {
    display: inline-block;
    padding-left: 100%; /* Start off-screen to the right */
    animation: marquee 15s linear infinite; /* Adjust duration as needed */
}

@keyframes marquee {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); } /* Move to the left */
}

/* General body background (for ordinary HTML pages) */
body {
  background-color: #f0f0f0;
  font-family: 'Inter', sans-serif;
  color: #333;
}

/* Background for reveal.js slides (overrides body for slides) */
.reveal {
  background-color: #ffffff;
  /* background-image: url('images/my_background_pattern.png'); */
  /* background-repeat: repeat; */
  /* background-size: 100px; */
}

/* layout ends  */

/* layout ends  */

/* qmd table border  */

/* Make sure borders are shown for all table cells */
/* Stronger selector with !important to override RevealJS theme */
.reveal table,
.reveal table th,
.reveal table td {
  border-collapse: collapse !important;
  border: 1px solid black !important;
}

.reveal th,
.reveal td {
  padding: 6px !important;
  text-align: center !important;
}

.reveal thead tr th {
  border-bottom: 2px solid black !important;
}

.reveal tbody tr:last-child td {
  border-bottom: 1px solid black !important;
}

.reveal thead tr th {
  background-color: #f0f0f0 !important;
}


