﻿.studio-home {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.container-studio-home {
    width: 80%;
    max-width: 800px;
}

.container-studio-Title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    margin-top: 100px;
}

.company-list-studio {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 320px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    margin-top: 20px;
}

.company-item-studio {
    padding: 10px;
    background: #f4f4f4;
    border-radius: 5px;
    transition: 0.3s;
}

    .company-item-studio:hover {
        background: #ddd;
    }

.company-details-studio {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fff;
}

.company-NameButtom-studio {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.btn-clear-studio {
    background: transparent;
    border: none;
    font-size: 15px;
    margin-left: 5px;
    color: #ff4444;
}

    .btn-clear-studio:hover {
        text-decoration: underline;
    }

.buttons-container-studio {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
}

.opcoes-container-studio {
    display: flex;
    gap: 10px;
}

.option-button-studio {
    padding: 10px 20px;
    border: none;
    background-color: #F4F4F4;
    border-radius: 5px;
    font-size: 19px;
    font-weight: bold;
}

.selected-option-studio {
    padding: 10px 20px;
    border: none;
    background-color: black;
    color: white;
    border-radius: 5px;
    font-size: 19px;
    font-weight: bold;
}

.edit-buttom-studio {
    padding: 10px 20px;
    border: none;
    background-color: #E40E18;
    color: white;
    border-radius: 5px;
    font-size: 19px;
    font-weight: bold;
}

/* Informações do kartódromo */
.kartodromo-infos-studio {
    display: flex;
    align-items: center;
    max-height: 150px;
    background-color: #F4F4F4;
    border-radius: 5px;
    width: 100%;
    padding: 10px;
}


.kartodromo-info-studio {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: auto;
}

.kartodromo-company-infos-studio {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
}

.kartodromo-company-info-studio {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.kartodromo-company-logo-studio {
    min-width: 100px;
    min-height: 100px;
    max-width: 100px;
    max-height: 100px;
    background-color: white;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    display: flex;
    overflow: hidden;
    padding: 10px;
}

.logo-kartodromo-studio {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.kartodromo-phone-studio {
    font-size: 22px;
    margin: 5px;
}

.kartodromo-SocialName-studio {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.0;
}

.kartodromo-CityState-studio {
    font-size: 22px;
    margin: 0;
    line-height: 1.0;
}

.kartodromo-social-studio {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    margin-left: auto;
    margin: 5px;
    align-items: center;
    justify-content: center;
}

.social-logo-studio {
    width: 25px;
}

@media (max-width: 768px) {

    .studio-home {
        height: auto;
    }

    .container-studio-home {
        width: 100%;
        max-width: auto;
        padding: 20px;
    }

    .company-list-studio {
        overflow-x: hidden
    }

    .opcoes-container-studio {
        flex-direction: column;
    }

    .kartodromo-SocialName-studio {
        font-size: 20px;
    }

    .kartodromo-phone-studio {
        font-size: 15px;
    }

    .kartodromo-company-logo-studio {
        min-width: 70px;
        min-height: 70px;
        max-width: 70px;
        max-height: 70px;
        padding: 5px;
    }
}