a{
    color: #000000;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #333333;
}

.bg-blue{
    background: #000000;
}

.btn-success{
    background: #388e3c;
}

.btn-danger{
    background: #d84315;
}

.navbar{
    margin-left: 80px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1600px;
    }
}
.ticket-count {
    position: absolute;
    top: -2px;
    right: -2px;
    font-size: 10px;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 2px solid white;
}

.create-ticket-btn {
    position: absolute;
    bottom: -4px;
    right: -4px;
    font-size: 14px;
    color: white;
    background-color: #000000;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
    transition: all 0.2s ease;
    z-index: 10;
    border: 2px solid white;
}

.create-ticket-btn:hover {
    opacity: 1;
    transform: scale(1.15);
    background-color: #333333;
    color: white;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

.project-name {
    font-size: 11px;
    max-width: 65px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 5px;
    font-weight: 500;
    margin-top: 2px;
    color: #555;
}

/* Project details styles */
.project-detail-item {
    display: inline-block;
    text-align: center;
    margin: 0 10px 0 0;
    min-width: 70px;
    transition: all 0.2s ease;
    position: relative;
    padding: 6px;
    border-radius: 8px;
    background-color: #f9f9fb;
}

.project-detail-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
    /* transform: translateY(-2px); - Animation removed */
}

.project-detail-item:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    z-index: 100;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.project-detail-item i {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: #000000;
    transition: all 0.2s ease;
}

.project-detail-item:hover i {
    color: #333333;
    /* transform: scale(1.1); - Animation removed */
}

.project-detail-item small {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
}

/* Badge styling */
.badge {
    padding: 0.4em 0.8em;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Status badge styling */
.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5em 0.9em;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    border: 2px solid transparent;
    cursor: pointer;
    background-color: transparent;
}

.status-badge:hover {
    /* transform: translateY(-1px); - Animation removed */
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.status-badge i {
    margin-right: 5px;
    font-size: 0.9em;
}

.status-badge.active {
    color: white !important;
    font-weight: 700;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* Status badge colors */
.status-badge[style*="background-color: transparent"] {
    background-color: rgba(255, 255, 255, 0.8) !important;
}

/* Priority badge styling */
.priority-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4em 0.8em;
    font-weight: 600;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.priority-badge:hover {
    /* transform: translateY(-1px); - Animation removed */
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.priority-badge i {
    margin-right: 4px;
}

.priority-badge.priority-1 {
    background-color: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

.priority-badge.priority-2 {
    background-color: rgba(13, 202, 240, 0.1);
    color: #0dcaf0;
}

.priority-badge.priority-3 {
    background-color: rgba(0, 0, 0, 0.1);
    color: #000000;
}

.priority-badge.priority-4 {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.priority-badge.priority-5 {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* Breadcrumb styling */
.breadcrumb {
    padding: 0.75rem 1rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    margin-bottom: 1.5rem;
}

.breadcrumb-item a {
    color: #000000;
    font-weight: 500;
    text-decoration: none;
}

.breadcrumb-item.active {
    font-weight: 600;
    color: #333;
}

/* Time display styling */
.time-display {
    display: inline-flex;
    align-items: center;
    padding: 0.4em 0.8em;
    background-color: rgba(0, 0, 0, 0.1);
    color: #000000;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.time-display i {
    margin-right: 6px;
    font-size: 0.9em;
}

.time-display:hover {
    background-color: rgba(0, 0, 0, 0.15);
    /* transform: translateY(-1px); - Animation removed */
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.time-display.time-estimated {
    background-color: rgba(0, 0, 0, 0.08);
    color: #333333;
}

.time-display.time-required {
    background-color: rgba(56, 142, 60, 0.08);
    color: #388e3c;
}

.time-display.time-spent {
    background-color: rgba(3, 169, 244, 0.08);
    color: #0288d1;
}

.bg-info{
    background-color: #3a5bbc!important;
}

.m2{
margin-left: 10px;
}

/* Form controls */
.form-control, .form-select {
    border-radius: 8px;
    padding: 0.6rem 1rem;
    border-color: rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.form-control:focus, .form-select:focus {
    border-color: #000000;
    box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25);
}
.status-badge, .priority-badge {
    font-size: 10px;
}

.btn-outline-secondary{
    padding-top: 0.3rem;
}

/* Right-align action buttons in tables */
th.text-end, td.text-end {
    text-align: right !important;
}
.sortable i{
    margin-left: 5px;
}