body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #333;
}

button {
    padding: 10px 20px;
    background-color: #f48024;
    color: white;
    border: none;
    cursor: pointer;
}

header {
    background-color:rgba(99, 30, 127, 0.92);
    color: rgb(248, 243, 243);
    padding: 10px 20px;
    text-align: center;
}
header h1{ color:rgb(18, 18, 10);}
span a {color:azure;margin-left:10px;text-decoration: none; font-size:15px;font-weight:bolder;
}
span a:hover{
    color:red;
}
.container {
    display: flex;
    max-width: 1200px;
    margin: 20px auto;
}#wm {
    position: fixed; /* Fixed position to keep it in view */
    top: 10px; /* 10px from the top of the viewport */
    right: 10px; /* 10px from the right of the viewport */
    margin: 0; /* Remove any default margin */
    padding: 5px; /* Padding for aesthetics */
    font-size: 12px; /* Smaller font size for subtlety */
    color: #666; /* Light grey color to make it less prominent */
    background-color: rgba(255, 255, 255, 0.5); /* Semi-transparent white background */
    border-radius: 5px; /* Rounded corners for the box */
    opacity: 0.5; /* Reduce opacity to make it more subtle */
    transition: opacity 0.5s; /* Smooth transition for opacity changes */
}

.sidebar {
    flex: 1;
    background-color: #f8f8f8;
    padding: 20px;
}

.sidebar h2, .content h2 {
    color: #0044cc;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li a {
    text-decoration: none;
    color: #333;
    display: block;
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.content {
    flex: 3;
    padding: 20px;
}

.content .tutorial img {
    width: 100%;
    height: auto;
    margin-top: 20px;
}

.dropdown label, .dropdown select {
    width: 100%;
    padding: 10px;
    margin-top: 20px;
}

select {
    display: block;
}

.dropdown select:focus {
    border-color: #0044cc;
}
