.main-content {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    flex: 1; /* Faz o .main-content ocupar o espaço disponível */
    background-color: #eff2f6;
}

.a-link {
    text-decoration: none;
    color: black;
}
.a-link:hover {
    color: #39b47b;
}

.a-link-active {
    text-decoration: none;
    color: #39b47b;
}
.a-link-active:hover {
    color: #34a571;
}

.a-link-light {
    text-decoration: none;
    color: white;
}
.a-link-light:hover {
    color: #39b47b;
}

.a-link-light-active {
    text-decoration: none;
    color: #39b47b;
}
.a-link-light-active:hover {
    color: #34a571;
}

.interest-tab {
    background-color: hsl(0, 0%, 95%);
    padding: 5px;
    border-radius: 5px;
}

.tab-active {
    background-color: hsl(0, 0%, 95%);
    border-radius: 5px;
}

.text-brown {
    color: #d2691e;
}

.form-container {
    border-radius: 20px;
    padding: 40px;
    background: #fff;
    line-height: 2.5;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.delete-btn {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #333;
    color: white;
    border: none;
    padding: 8px;
    cursor: pointer;
    border-radius: 50%;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.delete-btn:hover {
    opacity: 1;
    background-color: #555;
}

.delete-btn i {
    font-size: 1.2rem;
}

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

.container-img-carrousel {
    position: relative;
    width: 500px;
    height: 500px;
    overflow: hidden;
}
