
		
        /* Default theme */
        body {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            background-color: #f9f9f9;
			color: #333;
         }
        #logo {
            height: 50px;
            border-radius: 50%;
        }
		h1 {
			color: #333;
		}
		/* Menu styles */
        nav {
            background-color: #ebebeb;
            color: black;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
          }
      
          ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
          }
      
          li {
            margin-right: 20px;
          }
      
          a {
            color: black;
            text-decoration: none;
            transition: color 0.5s ease-out;
          }
      
          a:hover {
            color: green;
          }
        /* Header styles */
        header {
            background-color: lightgrey;
            color: #333;
            padding: 50px 20px;
            text-align: center;
        }
        /* Footer styles */
        footer {
            background-color:#ebebeb;
            color: black;
            width: 100%;
            height: 100px;
            text-align: center;
            margin-top: auto;
        }
        footer p {
            margin: 0;
            line-height: 100px;
        }
	
   /* --------------------------------------------------------*/
   #rightClickMenu {
    position: fixed;
    z-index: 10000;
    width: 150px;
    background-color: white;
    border-radius: 3px;
    box-shadow: 0px 0px 10px 10px rgba(0,0,0,0.15);
    padding: 4px;
    display: none;
   }

   #rightClickMenu .item {
    padding: 8px 10px;
    font-size: 12px;
    color: black;
    cursor: pointer;
    border-radius: inherit;
   }
   #rightClickMenu .item:hover {
    background-color: gainsboro;
   }