/* gitlab-custom-styles.css */

body {
    background-color: #fafafa;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.page-header {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-title {
    display: flex;
    align-items: center;
    font-size: 24px;
    margin: 0;
}

.header-title img {
    margin-right: 0.5rem;
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    flex-grow: 1;
}

.default-view {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 20px;
    margin-top: 20px;
}

.default-text {
    margin-bottom: 20px;
    line-height: 1.5;
}

.label-input-container {
    display: flex;
    align-items: center;
}

.category-accordion {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    margin-bottom: 16px;
}

.accordion-header {
    padding: 12px 16px;
    background-color: #f0f0f0;
    cursor: pointer;
    transition: background-color 0.2s;
}

.accordion-header:hover {
    background-color: #e0e0e0;
}

.accordion-content {
    padding: 16px;
}

.epic-title, .issue-title {
    font-size: 18px;
    margin-bottom: 12px;
}

.epic-list, .issue-list {
    padding-left: 20px;
}

.epic-item, .issue-item {
    margin-bottom: 8px;
}

.gl-link {
    color: #1068bf;
}

.gl-link:hover {
    text-decoration: underline;
}

.page-footer {
    background-color: #f8f8f8;
    border-top: 1px solid #e5e5e5;
    padding: 20px 0;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

.gl-display-flex {
    display: flex;
}

.gl-flex-direction-column {
    flex-direction: column;
}

.gl-justify-content-space-between {
    justify-content: space-between;
}

.gl-align-items-center {
    align-items: center;
}

.gl-mb-5 {
    margin-bottom: 1.25rem;
}

.gl-mb-0 {
    margin-bottom: 0;
}

.gl-mt-2 {
    margin-top: 0.5rem;
}

.gl-ml-5 {
    margin-left: 1.25rem;
}

.gl-mr-3 {
    margin-right: 0.75rem;
}

.gl-mr-2 {
    margin-right: 0.5rem;
}

.gl-font-lg {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.gl-font-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.gl-text-gray-500 {
    color: #6e6e6e;
}

.gl-flex-grow-1 {
    flex-grow: 1;
}

.gl-button {
    font-size: 0.875rem;
    line-height: 1rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.25rem;
}

.gl-button--secondary {
    background-color: #fafafa;
    color: #333;
    border: 1px solid #e5e5e5;
}

.gl-button--secondary:hover {
    background-color: #f0f0f0;
}

.gl-icon {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

.custom-label {
    font-size: 0.75rem;
    padding: 2px 4px;
    border-radius: 2px;
}

.epic-label .gl-label-text {
    background-color: #D9C2EE;
    color: #4B2E72;
}

.issue-label .gl-label-text {
    background-color: #CEEEC2;
    color: #1F5920;
}

.gl-label-text-scoped {
    background-color: #FFFFFF;
    color: #333333;
}

.gl-progress-bar {
    width: 100%;
    height: 20px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.gl-progress-bar-fill {
    height: 100%;
    background-color: #1f75cb;
    transition: width 0.3s ease;
}

.gl-h-5 {
    height: 20px;
}

.gl-bg-blue-500 {
    background-color: #1f75cb;
}

.gl-max-w-31 {
    max-width: 31rem;
}