.documentationscreenshot {
    width: 100%;
    height: auto;
    border: 2px solid rgb(255 255 255 / 12%);
    border-radius: 15px;
    margin-top: 20px;
}
.documentationDrawerfooterText {
    margin-top: auto;
    font-size: 14px;
    text-align: left;
}
.documentationDrawerheaderText {
    margin-top: auto;
    font-size: 27px;
    text-align: center;
}
.documentationDrawerversionText {
    margin-top: auto;
    font-size: 14px;
    text-align: center;
}
.documentationDrawer h1 {
    font-size: 16px;
    margin-bottom: 20px;
}
.documentationDrawer a {
    color: #ecf0f1;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 16px;
    border: 2px solid rgb(255 255 255 / 12%);
    border-radius: 5px;
    margin: 10px 0;
    padding: 10px;
    transition: background 0.3s;
}
.documentationDrawer a:hover {
    background-color: #34495e;
}
.documentationDrawer {
    width: 300px;
    height: 100vh;
    background-color: #5a0e1e;
    color: white;
    padding: 30px;
    border: 2px solid rgb(255 255 255 / 12%);
    position: fixed;
    left: 0;
    top: 0;
    box-shadow: 0 10px 8px rgba(14, 14, 14, 0.2);
}
.documentationDrawerLogo {
    width: 40px;
    height: auto;
    margin-right: 10px;
    border: 2px solid rgb(255 255 255 / 12%);
    border-radius: 5px;
    vertical-align: middle;
}
.documentationDrawerBrandLogo {
    width: 260px;
    height: auto;
    margin-right: 10px;
    border: 2px solid rgb(255 255 255 / 12%);
    border-radius: 15px;
    vertical-align: middle;
}
.documentationcodeBlock {
    background-color: #1e1e1e;
    color: #c5c5c5;
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
    font-family: 'Courier New', Courier, monospace;
}
.documentationcodeBlock .keyword {
    color: #ff79c6; /* Pink */
}
.documentationcodeBlock .string {
    color: #50fa7b; /* Green */
}
.documentationcodeBlock .comment {
    color: #6272a4; /* Blue */
}
.documentationcodeBlock .error {
    color: #971111; /* Red */
}
.documentationsearchBar {
    width: 80%;
    padding: 10px;
    color: white;
    border: none;
    border: 2px solid rgb(255 255 255 / 12%);
    border-radius: 15px;
    backdrop-filter: saturate(120%) blur(6px);
    background: color-mix(in srgb, #7a1a28 80%, transparent);
    box-shadow: 0 10px 8px rgba(14, 14, 14, 0.2);
    outline: none;
}
.documentationsearchBar::placeholder {
    color: white;
}
.documentationDrawerSearchIcon{
    width: 30px;
    height: auto;
}
.documentationContentStructure {
    margin-left: 260px;
    padding: 20px;
    color: white;
    flex-grow: 1;
}
.documentationStructure {
    margin-bottom: 30px;
}
.documentationStructure h2 {
    font-size: 24px;
    margin-bottom: 10px;
}
.documentationStructure p {
    font-size: 16px;
    line-height: 1.5;
}
.documentationsearchBarStructure {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.whiteHR {
    color: white;
}
.brandLanding {
    text-align: center;
    color: #fff;
    padding: 30px 20px;
    background-image: url('/assets/Official_BG.png');
    background-size: cover;
    background-position: center;
    border: 2px solid rgb(255 255 255 / 12%);
    border-radius: 15px;
    margin: 20px 0;
    box-shadow: 0 10px 8px rgba(14, 14, 14, 0.2);
    position: relative;
}

.brandLanding h1 {
    font-size: 28px;
    margin: 0;
}

.brandLanding p {
    font-size: 16px;
    margin-top: 5px;
}
button {
    margin-top: auto;
    padding: 10px 20px;
    background-color: #7a1a28;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 120px;
    box-shadow: 0 10px 8px rgba(14, 14, 14, 0.2);
}

button:hover {
    background-color: #5a0e1e;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #7a1a28;
}
.siteStructure {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #7a1a28;
}
.button-red {
    background: linear-gradient(90deg, 
        rgba(179, 2, 2, 0.85), 
        rgba(255, 0, 0));
    border: 1px solid rgba(255, 0, 0, 0.4);
    box-shadow: 0 10px 28px rgba(255, 0, 0, 0.25), 
                0 8px 22px rgba(255, 0, 0, 0.2);
    color: #ffffff;
    font-weight: 700;
    padding: 10px 20px; 
    border: none;
    border-radius: 5px;
    text-align: center; 
    text-decoration: none; 
    transition: background 0.3s ease, box-shadow 0.3s ease; 
}

.button-red:hover {
    background: linear-gradient(90deg, 
    rgb(255, 0, 0), 
    rgba(179, 2, 2, 0.85));
    box-shadow: 0 12px 30px rgba(172, 1, 1, 0.699), 
                0 10px 25px rgba(255, 0, 0, 0.575);
}
.redEmbedBuilder {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    color: white;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
    font-weight: bold;
    color: white;
}

input[type="text"],
input[type="url"],
textarea,
select {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

textarea {
    resize: vertical;
    min-height: 80px;
}
@media (max-width: 1391px) {
    .documentationDrawer {
        display: none;
        
    }
}
