﻿html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}


/* Passwords table icon buttons */
.passwords-table .btn-icon {
    border: none !important;
    background: none !important;
    padding: 4px 6px;
    box-shadow: none !important;
    transition: transform 0.15s ease-in-out, color 0.15s ease-in-out;
}

    /* 🪄 Hover animation */
    .passwords-table .btn-icon:hover {
        transform: scale(1.2);
    }

    /* 🎨 Icon colors (persistent) */
    .passwords-table .btn-icon.copy i {
        color: #3b82f6 !important; /* blue */
    }

    .passwords-table .btn-icon.eye i {
        color: #10b981 !important; /* green */
    }

    .passwords-table .btn-icon.delete i {
        color: #ef4444 !important; /* red */
    }

    /* Optional hover tint for nice feedback */
    .passwords-table .btn-icon.copy:hover i {
        color: #2563eb !important;
    }

    .passwords-table .btn-icon.eye:hover i {
        color: #059669 !important;
    }

    .passwords-table .btn-icon.delete:hover i {
        color: #dc2626 !important;
    }
