/* styles.css */
body {
    font-family: Arial, sans-serif;
    background-color: #000;
    margin: 0;
    padding: 0;
    color: #fff;
}

header {
    background-color: #222;
    padding: 1em;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.logo img {
    max-height: 80px; /* Adjust as needed */
    max-width: 100%; /* Ensure logo is responsive */
}

.container {
    background: #222;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    max-width: 800px; /* Increase max-width */
    width: 90%; /* Ensure some margin on smaller screens */
    margin: 2em auto;
}

h1 {
    font-size: 1.5em;
    color: #fff;
    margin-bottom: 0.5em;
    text-align: center;
}

h2 {
    font-size: 1.2em;
    color: #fff;
    margin-top: 1.5em;
    border-bottom: 2px solid #444;
    padding-bottom: 0.5em;
    text-align: center;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

label {
    font-weight: bold;
    color: #ddd;
    font-size: 1em;
}

input[type="text"] {
    padding: 0.75em;
    border: 1px solid #444;
    border-radius: 5px;
    font-size: 1em;
    background-color: #333;
    color: #fff;
}

button {
    padding: 0.75em;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background 0.3s;
}

button:hover {
    background: #0056b3;
}

.details-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1em;
    table-layout: auto; /* Make columns fit content */
}

.details-table th, .details-table td {
    padding: 0.5em;
    text-align: left;
    border-bottom: 1px solid #444;
    font-size: 0.9em;
    word-wrap: break-word; /* Ensure long words break */
}

.details-table th {
    background: #333;
    font-weight: bold;
}

.details-table td {
    background: #222;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 1em;
    }

    h1 {
        font-size: 1.2em;
    }

    h2 {
        font-size: 1em;
    }

    .details-table th, .details-table td {
        font-size: 0.8em;
        padding: 0.5em;
    }
}

/* Additional styles for BLA and CRM details */
#response-container {
    display: flex;
    justify-content: space-between;
    margin-top: 1em;
}

.minibox {
    background: #333;
    padding: 1em;
    border-radius: 5px;
    flex: 1;
    margin-right: 1em;
}

.message, .code {
    color: #fff;
    margin-bottom: 0.5em;
}

@media (max-width: 768px) {
    #response-container {
        flex-direction: column;
    }

    .minibox {
        margin-right: 0;
        margin-bottom: 1em;
    }
}


 .details-container {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
        }

        .details-box {
            flex: 1;
            padding: 20px;
            border: 1px solid #ccc;
            margin-right: 10px;
        }

        .details-box:last-child {
            margin-right: 0;
        }

        table {
            width: 100%;
            border-collapse: collapse;
        }

        th,
        td {
            padding: 10px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }

        th {
            background-color: #333333;
        }

        .pb-details-container {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
        }

        .pb-details-box {
            flex: 1;
            padding: 20px;
            border: 1px solid #ccc;
            margin-right: 10px;
        }

        .pb-details-box:last-child {
            margin-right: 0;
        }

        .good {
            color: green;
        }

        .bad {
            color: red;
        }
