/* Client List Styling */
.clients-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.client-card {
    border: 1px solid #ccd0d4;  /* Light border */
    border-radius: 5px;          /* Rounded corners */
    background-color: #fff;      /* White background */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Soft shadow */
    padding: 20px;               /* Padding inside card */
    display: flex;
    flex-direction: column;      /* Arrange content vertically */
    justify-content: space-between; /* Space content evenly */
}

.client-card h2 {
    font-size: 20px;             /* Title font size */
    margin-top: 0;               /* No top margin */
    font-weight: bold;           /* Bold company name */
}

.client-card p {
    margin: 10px 0;              /* Spacing between paragraphs */
}

.client-actions {
    margin-top: 15px;            /* Space between details and actions */
}

.client-actions .button {
    margin-right: 10px;          /* Space between buttons */
}

.client-card:hover {
    background-color: #f7f7f7;   /* Light grey background on hover */
}

.cra-registration-form .form-group {
	display:flex;
	margin-bottom: 12px;
}
.cra-registration-form label {
	min-width: 300px;
}

/* General message styling */
.cra-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.5;
}

/* Success message */
.cra-message.cra-success {
    background-color: #d4edda; /* Light green background */
    color: #155724; /* Dark green text */
    border: 1px solid #c3e6cb; /* Green border */
}

/* Error message */
.cra-message.cra-error {
    background-color: #f8d7da; /* Light red background */
    color: #721c24; /* Dark red text */
    border: 1px solid #f5c6cb; /* Red border */
}

/* Paragraph inside messages */
.cra-message p {
    margin: 0; /* Remove default paragraph margin */
}

/* Pricing Section Styles */
.pricing-item {
    display: flex;
    align-items: center; /* Align labels and inputs vertically */
    margin-bottom: 10px; /* Add spacing between rows */
}

.pricing-item label {
    width: 50%;
}

.pricing-item input {
    width: 50%; /* Input takes remaining space */
}

.update-qrs {
    float: right;
}

@media (max-width: 768px) {
    .update-qrs {
        display: none;
} }