.noticiasBox {
    margin: 10px 20px;
    padding: 20px;
    height: 100%;
}

.card {
    border-radius: 20px;
    background-color: yellow;
    width: auto;
    color: white;
    height: auto;
}

.card img {
    height: 300px;
    width: auto;
    padding: 15px 0 15px 20px;
}

.card-body {
    max-height: auto;
}

.noticias-container {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
    max-height: 1600px;
}

.noticias-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background-color: #91a74a;
    border-radius: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.noticias-scroll::-webkit-scrollbar {
    display: none;
}


.card-img-top {
    border-radius: 10px 10px 0 0;
}

.card-body {
    padding: 20px;
    background-color: #91a74a;
    margin: 20px;
    height: 250px;
    border-radius: 20px;
    width: auto;
}

.crear {
    display: flex;
    align-items: center;
    justify-self: center;
    border-radius: 50px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 100px;
    height: 100px;
    z-index: 1000;
}

.crearA img {
    width: 100px;
    height: 100px;
    background-color: white;
    border-radius: 50px;
}




/* asdfjfjkldfklsj */

.news-container {
    max-width: 100%;
    margin: 20px;
    background-color: yellow;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.news-content {
    display: flow-root;
    margin: 10px;
    background-color: #91a74a;
    border-radius: 20px;
}

.news-image {
    float: left;
    margin-right: 20px;
    margin-bottom: 15px;
    max-width: 250px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.news-text {
    margin: 0 20px 20px 0;
    border-radius: 20px;
    color: white;
    background-color: #91a74a;
    padding-right: 10px;
    line-height: 1.6;
    text-align: justify;
    min-height: 250px;
}

.news-title {
    font-size: 1.5em;
    color: white;
    padding-top: 10px;
    margin-bottom: 15px;
    font-weight: bold;
}

.button-container {
    clear: both;
    padding-top: 15px;
    border-top: 1px solid #ddd;
    margin-top: 15px;
}

.button {
    padding: 8px 16px;
    margin-right: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.edit-button {
    background-color: #007bff;
    color: white;
}

.delete-button {
    background-color: #dc3545;
    color: white;
}

.edit-button:hover {
    background-color: #0056b3;
}

.delete-button:hover {
    background-color: #c82333;
}