diff --git a/dashboard/static/css/dashboard.css b/dashboard/static/css/dashboard.css
index 7f2f108..6033408 100644
--- a/dashboard/static/css/dashboard.css
+++ b/dashboard/static/css/dashboard.css
@@ -174,3 +174,15 @@ h3 {
.btn-orange {
background-color: #f5b587;
}
+
+/* Clase para botones con funcionalidad no implementados */
+.btn-todo {
+ background-color: #6c757d;
+ color: #fff; /* texto en blanco*/
+ opacity: 0.65;
+ cursor: not-allowed;
+
+.btn-todo:disabled {
+ pointer-events: none;
+ }
+}
diff --git a/dashboard/templates/base.html b/dashboard/templates/base.html
index 40e6658..ff07943 100644
--- a/dashboard/templates/base.html
+++ b/dashboard/templates/base.html
@@ -218,6 +218,15 @@
+
+
+
{% block extrascript %}{% endblock %}
{% endblock %}