	/* Default for mobile */
	.navbar-brand img {
	  height: 40px;
	  width: 70px;
	}

	/* Larger size for desktops 992*/
	@media (min-width: 892px) {
	  .navbar-brand img {
		height: 60px;
		width: 100px;
	  }
	}

	.pt-10 {
		padding-top: 10px;
	}

	td.license-id {
		max-width: 150px;
		overflow-wrap: anywhere; /* even more aggressive than break-word */
	}

	/**
		For error page
	*/

    .error-container {
        min-height: 70vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 40px 20px;
    }
    .error-box {
        background: white;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        padding: 40px 30px;
        max-width: 520px;
        margin: 0 auto;
    }
    .error-image img {
        max-width: 100%;
        height: auto;
        max-height: 320px;
        border-radius: 8px;
    }
    .error-message {
        font-size: 1.4rem;
        color: #555;
        margin-top: 25px;
    }
