.main-content {
    padding-top: 50px; /* Adjust to prevent content from being hidden under the header */
}

.character-creation-content {
    background: #f8f8fbf7;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 800px;
    padding: 20px;
}

.character-creation h1 {
    text-align: center;
    font-size: 36px;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.65);
    margin: 0px 0px 20px 0px;
}

.creation-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.creation-steps .step {
    flex: 1;
    padding: 10px;
    text-align: center;
    background-color: #f1f1f1;
    border-radius: 5px;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    cursor: pointer;
    color: black;
}

.creation-steps .step.active {
    background-color: #00d084;
    color: #fff;
}

.tabs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.tab-link {
    flex: 1;
    padding: 10px;
    text-align: center;
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    cursor: pointer;
    margin: 0 5px;
}

.tab-link.active {
    background-color: #00d084;
    color: #fff;
}

.tab-content {
    display: none;
    flex-grow: 1;
}

.tab-content.active {
    display: block;
}

.option-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.option-item {
    width: 60px;
    height: 60px;
    margin: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
}

.option-item img {
    width: 100%;
    height: auto;
}

.color-picker {
    max-width: 100px;
}

.color-picker h2 {
    font-size: 24px;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    margin-bottom: 10px;
}

.color-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.color-option {
    width: 30px;
    height: 30px;
    margin: 5px;
    border: 1px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.character-preview {
    text-align: center;
    margin-bottom: 20px;
}

.character-preview svg {
    width: 250px;
    height: auto;
}

.actions {
    text-align: center;
}

.actions .save-button,
.actions .random-button {
    background-color: #00d084;
    border: none;
    padding: 10px 20px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    border-radius: 5px;
    margin: 0 10px;
}

.actions .random-button {
    background-color: #007bff;
}

.actions .save-button:hover,
.actions .random-button:hover {
    background-color: #0056b3;
}

.creation-content {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: flex-start;
}

.character-placeholder {
    height:50vh;
    min-height: 250px;
    transition: 0.1s;
    cursor: pointer;
}

.character-placeholder:hover {
    transform: scale(105%) translate(0px, -10px);
    transition: 0.3s;
}

.gender-content {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: nowrap;
}

.gender-footer {
    text-align: left;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 20px;
    color: #fff;
    text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
}

.gender-footer span {
    width: 100%;
    left: 0;
    font-size: 24px;
    position: absolute;
    text-align: center;
}

.sexem {
    color: #4CBFFF;
}

.sexef {
    color: #ff57f8;
}

.account-creation h3 {
    color: #646464;
    font-size: 24px;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    margin-bottom: 10px;
}

.account-creation input[type="text"],
.account-creation input[type="email"],
.account-creation input[type="password"] {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 18px;
}

.account-creation .submit-button {
    background-color: #00d084;
    border: none;
    padding: 10px 20px;
    color: white;
    font-size: 20px;
    cursor: pointer;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    border-radius: 5px;
    margin-top: 10px;
    width: 100%;
    transition: background-color 0.3s;
}

.account-creation .submit-button:hover {
    background-color: #00a86b;
}

.account-creation .submit-button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    color: #666666;
}


.input-container {
    position: relative;
}

.icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-size: cover;
    display: none; /* Hide by default */
}

.loading {
    background-image: url('/assets/img/icons/loading.gif');
}

.check {
    background-image: url('/assets/img/icons/check.gif');
}

.cross {
    background-image: url('/assets/img/icons/cross.gif');
}


.profession {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 20px;
    margin: 10px auto;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.profession-details {
    flex: 1;
    text-align: left;
}

.profession p {
    color: #767676;
}

.profession h2 {
    margin-top: 0;
    color: #515151;
}

.profession-icon {
    margin: 15px;
}

#step-2 h1 {
    color: #000000;
    text-align: left;
    text-shadow: 0px 2px 3px rgb(0 0 0 / 0%);
    font-size: 30px;
    font-weight: normal;
}

.choose-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.choose-button:hover {
    background-color: #45a049;
}

.friends {
    flex: 1;
    text-align: right;
    color: #000;
}

.friend-list img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin-left: 10px;
}

/* 
.gender-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
} */

/* .gender-item-footer {
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
    color: #464646;
} */