html,
body {
    height: 100%;
    min-height: 100vh;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.container-scroll {
    flex: 1 1 auto;
    overflow-y: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

footer {
    flex-shrink: 0;
}

.dev-item {
    background-color: #d4edda;
    /* Verde claro */
}

.dev-item:hover {
    background-color: #c3e6cb;
    /* Verde más oscuro al pasar el ratón */
}

.test-item {
    background-color: #fff3cd;
    /* Amarillo claro */
}

.test-item:hover {
    background-color: #ffeeba;
    /* Amarillo más oscuro al pasar el ratón */
}

.tool-item {
    background-color: #f8d7da;
    /* Rojo claro */
}

.tool-item:hover {
    background-color: #f5c6cb;
    /* Rojo más oscuro al pasar el ratón */
}

.section-title {
    background-color: #e9ecef;
    padding: 8px 15px;
    border-radius: 5px;
    margin: 10px 0;
    font-weight: bold;
    text-align: center;
}

.list-group-item {
    transition: all 0.3s ease;
}

.list-group-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
