.company-panel {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
}

.company-panel form label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.company-panel input[type="text"],
.company-panel input[type="date"],
.company-panel textarea {
    width: 100%;
    padding: 0.45rem;
    margin-bottom: 0.85rem;
    border-radius: 4px;
    border: 1px solid #ccd0d7;
}

.company-panel textarea {
    min-height: 4rem;
}

.company-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-bottom: 1rem;
}

.company-panel button {
    border: none;
    border-radius: 6px;
    padding: 0.65rem 1rem;
    background: #0d6efd;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.company-panel table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.company-panel table th,
.company-panel table td {
    border: 1px solid #e2e6ea;
    padding: 0.65rem;
    text-align: left;
    vertical-align: top;
}

.company-panel th {
    background: #f1f3f5;
}

.company-panel table td form {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.company-panel table td section {
    margin-bottom: 0.4rem;
}
