* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'SF Pro Display', Arial, sans-serif;
    background-color: #000;
}

header {
    padding: 8px 50px;
    background-color: rgba(0, 0, 0, 0.7);
    position: relative;
    height: 60px;
    display: flex;
    align-items: center;
    width: 100%;
    z-index: 10;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: #fff;
}

.header-nav-line {
    height: 2px;
    background-color: #e50914;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.header-logo {
    height: 100px;
    width: auto;
}

.header-nav-text-glow {
    display: flex;
    gap: 50px;
    margin-left: auto;
    margin-right: 20px;
}

.header-nav-text-glow a {
    text-decoration: none;
    font-size: 23px;
}

.header-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.header-nav-button-language {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    padding: 5px 15px;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.3s;
}

.header-nav-button-language-icon {
    height: 14px;
    margin-right: 3px;
}

.header-nav-button-language a {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    text-decoration: none;
}

.header-nav-button-language:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    margin-left: -5px;
}

.profile-picture {
    width: 40px;
    height: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
}

.profile-container {
    display: flex;
    align-items: center;
    position: relative;
    width: 70px;
    padding-left: 20px;
}

.profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-picture i {
    font-size: 15px;
    color: #fff;
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.back-to-homepage {
    display: flex;
    justify-content: left;
    align-items: left;
    height: 5vh;
    padding: 20px;
    margin-left: 10px;
}

.back-to-homepage a {
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    margin-top: 15px;
}

.back-to-homepage i {
    font-size: 20px;
    color: #fff;
    margin-right: 10px;
    margin-top: 2px;
}


.main-content-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    text-align: center;
}

.main-content-title h1 {
    font-size: 55px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.main-content-title p {
    font-size: 18px;
    color: #fff;
    display: flex;
    margin: 20px 0;
}

.main-content {
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px 0;
}

.main-content-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.main-content-limit{
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-content-limit-content-function{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.main-content-limit-content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 40px;
}

.limit-form-container {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.limit-form-container form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.current-text-input{
    width: 100%;
    height: 50px;
    border-radius: 8px;
    padding: 0 20px;
    font-size: 16px;
    color: #555;
    background-color: #e9e9e9;
    border: none;
    outline: none;
}

.current-text-input::placeholder{
    color: #777;
}

.form-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 25px;
}

.save-button {
    padding: 10px 30px;
    border-radius: 5px;
    background-color: #0066ff;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.save-button:hover {
    background-color: #0055dd;
}

.cancel-button {
    padding: 10px 30px;
    border-radius: 5px;
    background-color: #888;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.cancel-button:hover {
    background-color: #777;
}