#partner-form {
    margin: 0 auto;
    max-width: 420px;
}

#partner-form label {
    display: block;
    margin-bottom: 5px;
}

#partner-form input, #partner-form textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
    box-sizing: border-box;
}

#partner-form button {
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    cursor: pointer;
}

#partner-form button:hover {
    background-color: #005177;
}

#form-message {
    margin-top: 20px;
}

.partner-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.partner-item {
    border: 1px solid #ddd;
    padding: 15px;
    width: calc(33.333% - 20px);
    box-sizing: border-box;
}

.partner-item img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

.partner-item h2 {
    margin: 0 0 10px 0;
    font-size: 18px;
}

.partner-item-show {
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    background-color: #DD44B9;
    border-radius: 50px;
    padding: 20px;
    color: white;
    align-items: center;
    width: 100%;
    max-width: 600px;
}

ul.partner-details {
    list-style: none;

    li a {
        color: navajowhite;
    }
}

.partner-column1 {
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.partner-column2 {
    width: 100%;
}

.toggle-details {
    cursor: pointer;
    text-align: center;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0 0 20px 20px;
}

.arrow {
    display: inline-block;
    transition: transform 0.5s ease;
    transform: rotate(180deg);
}

.arrow.up {
    transform: rotate(0deg);
}

.club-name {
    color: wheat;
}

.partner-clothes-details {
    display: flex;
    gap: 15px;
    flex-direction: column;
    margin-bottom: 20px;
}

.partner-header {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
    max-width: 500px;
    margin: 20px auto;
}

.partner-header img {
    max-width: 150px !important;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50% !important;
}

.umow {
    font-size: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.umow svg {
    width: 30px;
    margin-right: 15px;
    fill: white;
}

.opinion {
    background-color: #efefef;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    border: 1px solid #dfdfdf;
    margin-bottom: 5px;
}

.opinion .header {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.opinion .author {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.opinion .author img {
    width: 35px; 
    height: 35px;
}

.opinion .author .name {
    margin: 0; padding: 0; font-weight: bold;
}

.opinion .author .date {
    font-size: 0.9em; margin: 0; padding: 0;
}

.opinion .vote{
    display: flex;
    gap: 0.25rem;
    align-items: center;
}
.opinion .vote .vote-txt {
    font-size: 1.5rem;
    font-weight: bold;
}

.opinion .vote svg {
    color: #ffcc05;
}

