.btn-circle { border-radius: 100%; height: 2.5rem; width: 2.5rem; font-size: 1rem; display: inline-flex; align-items: center; justify-content: center; &.btn-sm { height: 1.8rem; width: 1.8rem; font-size: 0.75rem; } &.btn-lg { height: 3.5rem; width: 3.5rem; font-size: 1.35rem; } } .btn-icon-split { padding: 0; overflow: hidden; display: inline-flex; align-items: stretch; justify-content: center; .icon { background: fade-out($black, 0.85); display: inline-block; padding: $btn-padding-y $btn-padding-x; } .text { display: inline-block; padding: $btn-padding-y $btn-padding-x; } &.btn-sm { .icon { padding: $btn-padding-y-sm $btn-padding-x-sm; } .text { padding: $btn-padding-y-sm $btn-padding-x-sm; } } &.btn-lg { .icon { padding: $btn-padding-y-lg $btn-padding-x-lg; } .text { padding: $btn-padding-y-lg $btn-padding-x-lg; } } } button.btn-primary { font-size: 16px; padding: 10px 20px; background-color: #007bff; border: none; border-radius: 5px; transition: background-color 0.3s ease; &:hover { background-color: #0056b3; } } .btn-dataset { border: 1px solid #ddd; background-color: #f9f9f9; color: #555; transition: all 0.3s ease; border-radius: 30px; &:hover { background-color: #e2e6ea; color: #333; border-color: #ccc; transform: scale(1.05); } &.active { background-color: #007bff; color: white; border-color: #007bff; i { color: white; } } } .btn-outline-primary { border: 2px solid #007bff; color: #007bff; background: none; transition: all 0.3s ease-in-out; &:hover { background: #007bff; color: #fff; transform: scale(1.05); } } .button-6 { align-items: center; background-color: #ffffff; border: 1px solid rgba(0, 0, 0, 0.1); border-radius: 0.25rem; box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0; font-weight: 600; transition: all 250ms; &:hover { transform: translateY(-1px); box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px; } &:active { background-color: #f0f0f1; transform: translateY(0); } } .btn-primary { background-color: #007bff; border: none; &:hover { background-color: #0056b3; } } .btn-view-models { background-color: #ffffff; color: #007bff; border: 2px solid #007bff; border-radius: 5px; padding: 10px 20px; font-size: 16px; font-weight: 500; text-transform: uppercase; transition: all 0.3s ease; display: inline-flex; align-items: center; justify-content: center; } .btn-view-models:hover { background-color: #007bff; color: #ffffff; border-color: #0056b3; /* Slightly darker blue for hover effect */ transform: translateY(-2px); /* Subtle lift effect */ box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3); /* Light shadow for depth */ } .btn-view-models i { font-size: 18px; /* Adjust icon size */ transition: all 0.3s ease; } .btn-view-models:hover i { transform: translateX( 5px ); /* Slide the icon slightly to the right on hover */ } /* Search Input */ .search-box { width: 100%; padding: 8px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 5px; }