.ch-card {
    width: 100%;
    max-width: 100%;
    background: var(--color-component-bg);
    border-radius: 6px;
    box-shadow: var(--ch-shadow);
    overflow: hidden;
    backdrop-filter: blur(12px);
    color: white;
    font-family: var(--font-dm-sans), sans-serif;
}

.ch-card-header {
    background-color: var(--color-solid);
    padding: 15px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
    position: relative;
    min-height: 60px;
}

.ch-card-body {
    padding: 24px;
}

.ch-card-section {
    margin-bottom: 15px;
}

.ch-card-section h5 {
    font-size: 15px;
    margin-bottom: 5px;
    color: black;
}

.ch-card-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /*background: rgba(255, 255, 255, 0.08);*/
    padding: 0;
    border-radius: 8px;
    margin-bottom: 15px;
    color: white;
}

.ch-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.ch-badge-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ch-card-section,
.ch-card-row {
    display: flex;
    flex-direction: column; /* Stacks elements vertically */
    align-items: flex-start; /* Aligns items to the left */
    width: 100%; /* Ensures proper alignment */
}

/* Stacks status, assignee, and last modified vertically */
.ch-card-row {
    padding: 0;
    border-radius: 8px;
    margin-bottom: 15px;
    /*background: rgba(255, 255, 255, 0.08);*/
    color: white;
    gap: 6px; /* Adds space between elements */
}

.ch-assignee,
.ch-last-modified,
.ch-description-trigger,
.ch-collaborator {
    display: block; /* Forces elements to take full width */
    text-align: left; /* Aligns text properly */
    font-size: 14px; /* Consistent font size */
    font-family: "Inter", sans-serif;
    color: var(--color-text-default);
    font-weight: 400;
}

.ch-ai-help-me {
    display: inline-block;
    text-align: center;
    font-size: 14px;
    font-family: "Inter", sans-serif;
    font-weight: 400;

    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 4px;

    padding: 6px 20px 6px 12px;

    margin-right: 12px;

    box-shadow: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ch-ai-help-me i {
    color: #ffffff;
    margin-right: 4px;
}

.ch-assignee:hover,
.ch-collaborator:hover {
    cursor: pointer;
    transform: scale(1.02)
}


.ch-description-trigger:hover {
    cursor: pointer;
    transform: scale(1.02)
}

.remediation-title {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 600 !important;
    color: var(--color-important-title);
    font-family: "Montserrat", sans-serif !important;
    font-style: normal;
}

.remediation-container {
    border: 1px solid rgba(0, 0, 0, 0.1); /* Soft border */
    border-radius: 12px; /* Smoother rounded corners */
    padding: 20px; /* Generous inner spacing */
    margin-top: 16px; /* Space above the container */
    background-color: #ffffff; /* Pure white background */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Subtle shadow */
    transition: all 0.3s ease-in-out; /* Smooth transitions */
}

.remediation-container:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12); /* Slightly stronger shadow on hover */
    transform: translateY(-2px); /* Lift effect on hover */
}

.remediation-text {
    margin: 0; /* Remove default margin */
    font-size: 14px; /* Text font size */
    color: #313842; /* Soft, readable text color */
    line-height: 1.6; /* Improve readability */
    font-weight: 4
}

.card {
    border: var(--ch-standard-border) !important;
    box-shadow: var(--ch-shadow) !important;
    border-radius: 4px !important;
    background-color: var(--color-component-bg);
}

.card-body {
    padding: 24px;
    background-color: var(--color-component-bg);
}