body {
    background-color: #f8f9fa;
}

.main-container {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.main-card {
    background-color: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
}

.main-card .card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    font-weight: 600;
    padding: 1rem 1.5rem;
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
}

.main-card .card-body {
    padding: 1.5rem;
}

.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #f8f9fa;
}

.login-card {
    width: 100%;
    max-width: 400px;
    padding: 2.5rem;
    background-color: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.result-box {
    font-family: monospace;
    background-color: #e9ecef;
}

/* Custom styles for navigation bar */
.navbar-light .navbar-nav .nav-link {
    color: #007bff; /* Blue color for nav links */
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #0056b3; /* Darker blue on hover */
}

/* Custom styles for forms */
.form-control {
    border-radius: 0.5rem;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    border-radius: 0.5rem;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Custom styles for tables */
.table {
    border-radius: 0.5rem;
    overflow: hidden; /* Ensures rounded corners are visible */
}

.table thead th {
    background-color: #e9ecef;
    border-bottom: 2px solid #dee2e6;
}

.table-responsive table {
    table-layout: fixed;
    width: 100%;
}
.table-responsive th, .table-responsive td {
    word-wrap: break-word;
}
.table-responsive td:nth-child(3) { /* License Key column */
    max-width: 150px; /* Adjust as needed */
}