/* General Styles */
body {
    background-color: black;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
 /*   overflow-y: hidden;*/ /* Prevent vertical scroll */
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.slogan-container {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  
  .slogan-text {
    color: #D09E59; /* Gulltónn til að passa við restina */
    font-size: 1.2em;
    font-weight: 300;
  }

.container {
    width: 500px;
    margin: 0 auto;
}

.logo-container {
    display: block;
    width: 90px;
    margin: 15% auto 0;
}
.logo-container img {
    display: block;
    width: 90px;
 
}
.logo-link {
    display: block; 
}
.text-field1 {
    width: 75%;
    background-color: black;
    height: 40px;
    border: 2px solid white;
    border-radius: 15px;
    box-shadow: 0px 0px 5px white;
    margin: 10% auto 0;
    position: relative;
}

.text-field1 input[type="text"] {
    width: 75%;
    vertical-align: middle;
    border: none;
    background: transparent;
    outline: none;
    padding: 5px;
    padding-left: 15px;
    font-size: 22px;
    font-weight: bold;
    color: white;
 
}

.text-field1 input[type="text"]::placeholder {
    color: lightgray;
    padding-left:15;
}

.text2-results {
    width: 75%;
    margin: 1% auto 0;
    background-color: #000000;
    color: #ffffff;
    border-radius: 15px;
    outline: none;
    padding: 5px;
    padding-left: 45px;
    overflow: auto;
    border: 0px solid #ffffff;
    font-size: 22px;
    font-weight: bold;
    resize: none; /* Disabling manual resize of textarea */
}

.text2-results .category-item {
    cursor: pointer;
}

.text2-results .category-item:hover {
    background-color: #ffffff;
    color: black;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .container {
        width: 97%;
    }
	.text-field1 input[type="text"] {
    width: 80%;
    }
	.text2-results {
    width: 80%;
	}
}
