body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            background: url('https://www.agdps.de/demonlist/bg.jpeg') center/cover no-repeat fixed;
            color: #ecf0f1;
          	align-items: center;
        }

        header {
            background-color: #333;
            color: #fff;
            padding: 3px;
            text-align: center;
          	font-weight: 500;
          	align-items: center;
        }
      	#header-buttons {
            display: flex;
            justify-content: space-around;
            padding: 10px;
        }

        .header-button {
            color: #fff;
            text-decoration: none;
            font-size: 18px;
            cursor: pointer;
        }

        .demon-entry {
            display: flex;
            align-items: center;
            background-color: #ffffff;
            margin-right: 200px; /* Adjust margin as needed */
	    	margin-left: 200px;
	 	    margin-top: 30px;
	 	    margin-bottom: 30px;
            padding: 12px; /* Adjust the padding as needed */
            border-radius: 9px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.3s ease;
            text-decoration: none; /* Remove default link styling */
        }

        .thumbnail {
            width: 200px; /* Adjust the width as needed */
            height: 115px;
            margin-right: 20px;
          	border-radius: 5px;
        }

        .demon-info {
            flex-grow: 1;
        }

        .demon-title {
            font-size: 40px; /* Adjust the font size as needed */
            color: #4a4a4a;
            margin-bottom: 5px;
        }

        .creator-name {
            font-size: 23px; /* Adjust the font size as needed */
            color: #777;
	  	    font-weight: 100;
        }

        .demon-entry:hover {
            background-color: #ffffff;
	   	    transform: scale(1.05);
        }
   	   #search-bar-container {
   		 margin-top: 30px;
         align-items: center;
	   }


		#search-bar {
 		   padding: 15px;
  		   width: 79%;
  		   font-size: 14pt;
  		   border: none;
           margin-left: 200px;
 		   border-radius: 9px;
  		   text-align: left;
   		   box-sizing: border-box;
           transition: transform 0.3s ease; /* Added transition effect */
        }

        #search-bar:hover {
            transform: scale(1.05);
        }

.modal {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            padding: 20px;
            background-color: white;
            border: 1px solid #ccc;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }

        /* Style for the close button */
        .close-btn {
            position: absolute;
            bottom: 10px;
            right: 10px;
            cursor: pointer;
        }

#demon-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9); /* White background with some transparency */
    z-index: 1000;
    overflow: auto;
}

#modal-content {
    max-width: 600px;
    margin: 20px auto;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

#modal-header h2 {
    margin: 0;
}

#modal-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.modal-btn {
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}