/* Styling for the company card */
.company-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    overflow: hidden;
}

/* Styles for the card header */
.company-card .card-header {
    background-color: #007bff; /* Use your primary color */
    color: white;
    padding: 20px;
    margin: -1px -1px 0;
    width: calc(100% + 2px);
}

/* Adjust padding for the card body */
.company-card .card-body {
    padding: 20px;
}

/* Styling for the company logo */
.company-logo {
    max-width: 200px;
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 20px;
    display: block; /* Ensures the image is treated as a block element */
}

/* Styling for the company name */
.company-card .card-title {
    font-size: 32px;
    font-weight: normal; /* Changed from bold to normal */
    color: white;
    margin: 0;
}

/* Styling for the company status (Active/Inactive) */
.company-status {
    font-size: 18px;
    color: #007bff;
    margin-top: 10px;
}

/* Styling for company details section */
.company-details div {
    margin-bottom: 10px;
    font-size: 16px;
}

/* Styling for contact information */
.company-contact div {
    margin-bottom: 10px;
    font-size: 16px;
}

.company-contact a {
    color: #007bff;
    text-decoration: none;
}

.company-contact a:hover {
    text-decoration: underline;
}

/* Styling for contact card */
.contact-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    padding: 15px;
    margin-bottom: 20px;
}

/* Add icons to the company details */
.company-details i,
.company-contact i {
    width: 20px;
    margin-right: 10px;
    color: #007bff;
}