/* General Styles */
body {
    font-family: Tahoma, sans-serif;
    margin: 0;
    padding: 0;
  	cursor: url('/Billeder/wow_cursor.png') 8 8, auto;
   
    color: black;
}

/* Header */
header {
    background: linear-gradient(to bottom, #c0c0c0, #a0a0a0);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #808080;
    box-shadow: inset -2px -2px 4px #ffffff, inset 2px 2px 4px #404040;
}

/* Logo */
.logo {
    font-size: 24px;
    font-weight: bold;
    color: #000080;
    text-shadow: 1px 1px 0px white;
}

/* Search Bar */
.search-bar input {
    width: 250px;
    padding: 5px;
    border: 2px inset #808080;
    background-color: #e0e0e0;
    font-family: Tahoma, sans-serif;
}

/* Sidebar Navigation */
.sidebar {
    width: 250px;
    background: #c0c0c0;
    color: black;
    position: fixed;
    top: 50px;
    left: 0;
    height: 100%;
    padding-top: 20px;
    border-right: 2px solid #808080;
    box-shadow: inset -2px -2px 4px #ffffff, inset 2px 2px 4px #404040;
 	cursor: url('/Billeder/wow_cursor.png') 8 8, auto;
}

.sidebar a {
    display: block;
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    border: 2px outset #808080;
    background: #e0e0e0;
    margin: 5px;
}

.sidebar a:hover {
    background: linear-gradient(to bottom, #000080, #0000ff);
    color: white;
    border: 2px inset #404040;
}

/* Main Content */
.main-content {
    margin-left: 260px;
    padding: 20px;
    background: #ffffff;
    border: 2px solid #808080;
    box-shadow: inset -2px -2px 4px #ffffff, inset 2px 2px 4px #404040;
}

/* Calculator Box */
.calculator-box {
    background: #c0c0c0;
    padding: 20px;
    border: 2px outset #808080;
    box-shadow: inset -2px -2px 4px #ffffff, inset 2px 2px 4px #404040;
    width: 300px;
    margin: auto;
    text-align: center;
}

.calculator-box label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

.calculator-box input {
    width: 90%;
    padding: 5px;
    border: 2px inset #808080;
    background: #e0e0e0;
    font-family: Tahoma, sans-serif;
}

/* Buttons */
button {
    background: linear-gradient(to bottom, #e0e0e0, #c0c0c0);
    border: 2px outset #808080;
    padding: 5px 10px;
    font-family: Tahoma, sans-serif;
    font-size: 12px;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background: linear-gradient(to bottom, #000080, #0000ff);
    color: white;
    border: 2px inset #404040;
}

/* Result Display */
#result {
    margin-top: 10px;
    padding: 10px;
    background: #e0e0e0;
    border: 2px inset #808080;
}

/* Sidebar Dropdown */
/* Sidebar Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    border: 2px outset #808080;
    background: #e0e0e0;
    margin: 5px;
    color: black;
    cursor: pointer;
}

/* Initially hide the dropdown menu */
.dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: #c0c0c0;
    border: 2px solid #808080;
    box-shadow: inset -2px -2px 4px #ffffff, inset 2px 2px 4px #404040;
    width: 100%;
    z-index: 100;
}

/* Show submenu when hovering over the main item */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Style submenu links */
.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 12px;
    color: black;
    background: #e0e0e0;
    border-bottom: 1px solid #808080;
}

/* Hover effect for submenu */
.dropdown-menu a:hover {
    background: linear-gradient(to bottom, #000080, #0000ff);
    color: white;
    border: 2px inset #404040;
}
