@import url(./variaveis.css);

body {
    background-image: url("/App/views/assets/img/background.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.div-informativa h1 {
    text-align: center;
    color: var(--colorclara);
}

.hero-banner-home {
    margin: auto;
    width: 70%;
    text-align: center;
}

.hidden {
    display: none;
}

.card-img-top {
    height: 100%;
    image-rendering: optimizeSpeed;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.card {
    width: 18rem;
    position: relative;
}

.edit-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    display: none;
    cursor: pointer;
    color: #6c757d;
}

.edit-icon:hover {
    color: #000;
}

.edit-mode .edit-icon {
    display: inline;
}

.add-card {
    width: 18rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px dashed #94989b;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.pluss {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.add-card h5 {
    color: var(--colorclara);
    font-size: 2.5rem;
    margin: auto;
}

.add-card:hover {
    background-color: #707070;
}

.edit-mode .add-card {
    display: flex;
}

.btn-delete {
    position: absolute;
    top: 10px;
    left: 10px;
    cursor: pointer;
    color: red;
}

.edit-mode .btn-delete {
    display: inline;
}

.icon-bar {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 10px;
    border-radius: 10px;
    margin: 20px 0;
}

.icon-bar a, .icon-bar button {
    text-decoration: none;
    color: var(--corpadrao2);
    font-size: 24px;
    transition: color 0.3s ease;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    padding: 5px 12px;
    border-radius: 30%;
}

.icon-bar button {
    border: 2px solid var(--corpadrao1);
}

.icon-bar a:hover, .icon-bar button:hover {
    color: var(--corpadrao1);
    transform: scale(1.2);
}

.icon-bar button:hover {
    border: 2px solid var(--corpadrao2);
} 

.search-container {
    margin-bottom: 20px;
}

.tag-buttons .btn {
    transition: 0.3s;
    border-radius: 20px;
}

.input-group {
    width: 80%;
    max-width: 400px;
}


.tag-buttons .btn.active,
.tag-buttons .btn:hover {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.search-bar-wrapper {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-around;
    text-align: center;
}