
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

            body {
    background: #ffffff;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px; /* bigger font globally */
}

h4.fw-bold {
    font-weight: 700;
    font-size: 24px; /* bigger heading */
}

.table {
    font-size: 18px; /* bigger table font */
    font-weight: 600; /* make table text bold */
}

.table th {
    font-weight: 700; /* stronger bold on headers */
    text-align: center;
    vertical-align: middle;
}

.table td {
    vertical-align: middle;
    text-align: center;
    font-weight: 600;
    padding: 12px 8px;
}

.table td:nth-child(2), /* company column */
.table td:nth-child(1) /* manufacturer column */ {
    text-align: left; /* align company and manufacturer to left */
}

.btn-primary, .btn-secondary, .btn-success {
    font-size: 18px;
    font-weight: 700;
    padding: 10px 16px;
}

input.form-control {
    font-size: 16px;
    font-weight: 600;
    padding: 10px 12px;
}

.pagination .page-link {
    font-weight: 700;
    font-size: 16px;
    padding: 10px 14px;
}

#successMessage {
    font-size: 20px;
    font-weight: 700;
}
       .container {
        max-width: 1100px;
        margin: 60px auto;
        padding: 30px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgb(58 186 234);
        animation: fadeIn 0.5s ease-in-out;
    }
    .top-bar {
        display: flex;
        justify-content: center;
        /* justify-content: space-between; */
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }

          h2 {
        color: #10BEF0;
        margin-bottom: 20px;
        font-size: 28px;
        font-weight: bold;
    }

        .date-filter {
        margin-bottom: 20px;
        font-weight: bold;
    }

    .date-filter label {
        margin-right: 10px;
    }

    input[type="date"] {
        padding: 10px 12px;
        font-size: 15px;
        border-radius: 6px;
        border: 1px solid #ccc;
        margin-right: 10px;
    }

   .register-btn {
        padding: 10px 20px;
        background: linear-gradient(90deg, #10BEF0, #59595B);
        color: #fff;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        cursor: pointer;
        font-weight: bold;
        transition: background 0.3s ease;
    }

    .register-btn:hover {
        background: linear-gradient(90deg, #59595B, #003d80);
    }

    table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 20px;
        font-size: 16px;
    }
      @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    th, td {
        padding: 14px 12px;
        text-align: left;
        border: 1px solid #ddd;
        font-weight: bold;
        font-size: 16px;
    }

    th {
        background-color: #e9ecef;
    }

    tr:hover {
        background-color: #f1f1f1;
    }

    button {
        padding: 10px 16px;
        font-size: 15px;
        font-weight: bold;
        background-color: #10BEF0;
        color: white;
        border: none;
        border-radius: 6px;
        cursor: pointer;
    }

    button:hover {
        background-color: #0a9ecb;
    }

        .link-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            justify-content: center;
        }

        .link-card {
            display: block;
            padding: 20px;
            background: #e9f1ff;
            color: #10BEF0;
            text-decoration: none;
            border-radius: 10px;
            font-size: 20px;
            font-weight: 500;
            box-shadow: 0 6px 15px rgba(0, 123, 255, 0.1);
            transition: all 0.3s ease;
        }

        .link-card:hover {
            background-color: #10BEF0;
            color: #fff;
            transform: translateY(-3px);
        }

        @media (max-width: 600px) {
            .link-grid {
                grid-template-columns: 1fr;
            }
        }
/* Top Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    /* background-color: #ffffff; */
    /* border-bottom: 1px solid #ddd; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); */
    z-index: 999;
    /* animation: slideDown 0.5s ease-in-out; */
}
.form-container {
    max-width: 500px;
    margin: 60px auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.styled-form {
    display: flex;
    flex-direction: column;
}

.styled-form label {
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.styled-form input[type="text"],
.styled-form input[type="submit"] {
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.styled-form input[type="text"]:focus {
    border-color: var(--primary-color);
    outline: none;
}

.btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #3366ff;
}

.navbar .profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar .profile span {
    font-weight: 600;
}

.navbar a.logout-btn {
    background-color: #2bbced;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;
}

.navbar a.logout-btn:hover {
    background-color: #e60000;
}

/* Card Style */
.card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeIn 0.8s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Button Styles */
button, .btn {
    padding: 10px 18px;
    border: none;
    background-color:  #10BEF0;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

button:hover, .btn:hover {
    background-color: #45a049;
    transform: scale(1.05);
}

/* Animations */
@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Forms */
input[type="text"], input[type="email"], input[type="password"], select, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    transition: border 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    border-color:  #10BEF0;
    outline: none;
}

/* Responsive */
@media (max-width: 600px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 20px;
    }
}


        .export-btn {
            padding: 8px 15px;
            background: #28a745;
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
        }
        .export-btn:hover {
            background: #218838;
        }
 .table {
                font-size: 18px;
                /* bigger table font */
                font-weight: 600;
                /* make table text bold */
            }

            .table th {
                font-weight: 700;
                /* stronger bold on headers */
                text-align: center;
                vertical-align: middle;
            }

            .table td {
                vertical-align: middle;
                text-align: center;
                font-weight: 600;
                padding: 12px 8px;
            }

            .table td:nth-child(2),
            /* company column */
            .table td:nth-child(1)

            /* manufacturer column */
                {
                text-align: left;
                /* align company and manufacturer to left */
            }

            .btn-primary,
            .btn-secondary,
            .btn-success {
                font-size: 14px;
                font-weight: 700;
                padding: 10px 14px;
            }

            input.form-control {
                font-size: 16px;
                font-weight: 600;
                padding: 10px 12px;
            }

            .pagination .page-link {
                font-weight: 700;
                font-size: 16px;
                padding: 10px 14px;
            }

            #successMessage {
                font-size: 20px;
                font-weight: 700;
            }
@keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .form-box {
            background: #ffffff;
            padding: 35px;
            border-radius: 15px;
            max-width: 550px;
margin: 60px auto;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
            animation: slideIn 1.2s ease;
        }

        @keyframes slideIn {
            from { transform: translateY(30px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

     
        label {
            display: block;
            margin-top: 15px;
            font-weight: 500;
            color: #333;
        }

        select, input[type="text"], input[type="submit"], button {
            /*width: 100%;*/
            padding: 12px;
            margin-top: 5px;
            border-radius: 8px;
            border: 1px solid #ccc;
            box-sizing: border-box;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        select:focus, input[type="text"]:focus {
            outline: none;
            border-color: #10BEF0;
            box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
        }

        input[type="submit"], .add-btn {
            background-color: #10BEF0;
            color: white;
            border: none;
            font-weight: bold;
        }

        .add-btn {
            width: auto;
            margin-top: 15px;
            display: inline-block;
            transition: background 0.3s, transform 0.2s;
        }

        input[type="submit"]:hover, .add-btn:hover {
            background-color:  #59595B;
            transform: translateY(-2px);
        }

        @media (max-width: 600px) {
            .form-box {
                padding: 25px;
            }
        }