body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 700px;
    margin: 40px auto;
    padding: 30px;
    background-color: rgba(225, 224, 224, 0.438);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.container.wide {
    max-width: 900px;
}
h1 {
    text-align: center;
    margin-bottom: 30px;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.tab-btn {
    background-color: #e0e0e0;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin: 0 5px;
    border-radius: 5px;
    font-weight: bold;
}

.tab-btn.active {
    background-color: #3498db;
    color: white;
}

.tab-content form {
    display: flex;
    flex-direction: column;
}
.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.styled-select {
    padding: 8px 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background: #f7fbff;
    font-size: 1em;
    margin-top: 6px;
    transition: border 0.2s;
    outline: none;
}

.styled-select:focus {
    border: 2px solid #217dbb;
}

label {
    margin-top: 10px;
    font-weight: bold;
}

input[type="text"],input[type="number"],
input[type="file"] {
    padding: 8px;
    margin-top: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

button[type="submit"] {
    margin-top: 20px;
    padding: 10px;
    max-width: 100px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 40%;
}

button[type="submit"]:hover {
    background-color: #29b97f;
}

#responseMsg,
#uploadMsg {
    margin-top: 15px;
    color: green;
    text-align: center;
}

#licenseList {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.license-card {
    padding: 10px;
    margin-bottom: 10px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#formContainer,
#resultContainer {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}


body {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('../assets/images/b5.jpg') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
}

.bg-overlay {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    padding: 40px 30px;
    margin-top: 20px;
}

.tabs {
    margin-bottom: 30px;
}

.tab-btn {
    margin-right: 10px;
}

.license-card {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Add to home.css */
.license-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    font-size: 0.97em;
}
.license-table th, .license-table td {
    border: 1px solid #dee2e6;
    padding: 8px 10px;
    text-align: left;
}
.license-table th {
    background: #3498db;
    color: #fff;
    font-weight: bold;
}
.license-table tr:nth-child(even) {
    background: #c8cdd0;
}

