body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: #2c2f33;
    color: #ffffff;
    margin: 0;
    padding: 0;
}
header {
    background-color: #23272a;
    padding: 10px 20px;
}
nav .user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}
.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}
.btn-logout {
    padding: 5px 10px;
    background-color: #7289da;
    border: none;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}
.container {
    display: flex;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
}
.builder, .preview {
    background-color: #2f3136;
    padding: 20px;
    border-radius: 8px;
    flex: 1 1 400px;
    min-width: 300px;
}
.builder input, .builder textarea, .builder select {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
    padding: 8px;
    border-radius: 5px;
    border: none;
    background-color: #23272a;
    color: #fff;
}
.builder label {
    display: block;
    margin-bottom: 4px;
    font-weight: bold;
}
.field {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}
.field input {
    flex: 1;
}
.inline-label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
}
.builder-btn {
    background-color: #5865F2;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    margin: 4px;
    transition: background-color 0.2s ease;
}
.builder-btn:hover {
    background-color: #4752c4;
}
.remove-field {
    background-color: #ed4245;
    color: white;
    border: none;
    padding: 2px 8px;
    border-radius: 3px;
    cursor: pointer;
    font-weight: bold;
}
.discord-embed {
    background-color: #2f3136;
    border-left: 4px solid #7289da;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    color: white;
}
.discord-embed a {
    color: #00a8fc;
    text-decoration: none;
}
.discord-embed a:hover {
    text-decoration: underline;
}
.discord-embed .author, .discord-embed .title, .discord-embed .description, .discord-embed .fields, .discord-embed .image, .discord-embed .footer {
    margin: 4px 0;
}
.discord-embed .description {
    white-space: pre-wrap;
}
.discord-embed .fields {
    display: block;
}
.discord-embed .field-box {
    display: block;
    margin-bottom: 8px;
}
.discord-embed .field-box.inline {
    display: inline-block;
    width: 32%;
    margin-right: 1%;
    vertical-align: top;
}
.discord-embed .field-box p {
    margin: 0;
    white-space: pre-wrap;
}
.accordion {
    background-color: #23272a;
    color: #fff;
    cursor: pointer;
    padding: 12px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    border-radius: 5px;
    margin-top: 5px;
}
.accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}
.accordion.active:after {
    content: "\2212";
}
.panel {
    padding: 0 18px;
    background-color: transparent;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.panel.show {
    max-height: 500px;
    padding-top: 10px;
}

.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 70px); 
    padding: 20px;
}

.login-card {
    background-color: #2f3136;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.login-subtext {
    color: #b9bbbe;
    margin-top: 0;
    margin-bottom: 25px;
}

.btn-discord-login:hover {
    background-color: #4752c4;
}

.simple-login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: calc(100vh - 70px);
    padding: 20px;
}

.login-text {
    font-size: 1.1em;
    color: #b9bbbe;
    margin-bottom: 20px;
}

.btn-discord-login {
    display: inline-block;
    padding: 12px 24px;
    background-color: #5865f2;
    color: white;
    font-weight: 500;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-discord-login:hover {
    background-color: #4752c4;
}