.refundBtn{
    background: var(--info);
}

.container {
            display: flex;
            justify-content: space-between;
            width: 100%;
        }
        .column {
            flex: 1;
            margin: 0 10px;
            text-align: left;
        }
        .label {
            margin-bottom: 10px;
            text-align: left;
        }

        .email-content {
            height: 400px;
            overflow-y: scroll;
            padding: 10px;
        }
        .timestamp {
            font-size: 0.8rem;
            color: #6c757d;
        }

        .timeline {
            position: relative;
            padding: 20px 0;
            list-style: none;
        }
        .timeline::before {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 40px;
            width: 2px;
            content: '';
            background-color: #e9ecef;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 30px;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: 32px;
            background-color: #007bff;
            border-radius: 50%;
            height: 16px;
            width: 16px;
        }
        .timeline-item .timestamp {
            display: block;
            font-size: 0.85rem;
            color: #6c757d;
            margin-bottom: 5px;
            margin-left: 60px;
        }
        .timeline-item .content {
            padding-left: 60px;
        }

        #emailHistory {
            height: 800px;
            overflow-y: scroll;
            overflow-x: hidden;
            padding: 10px;
        }
        .form-control   {
            width: 100%;
        }

        #emailHistory::-webkit-scrollbar {
            width: 12px;
        }

        #emailHistory::-webkit-scrollbar-track {
            background: #f1f1f1; 
        }

        #emailHistory::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 10px;
        }

        #emailHistory::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

        #emailHistory {
            scrollbar-width: thin;
            scrollbar-color: #888 #f1f1f1;
        }
        .note-editor    {
            width: 100% !important;
        }
        .note-editable  {
            height: 225px !important;
        }
        .fileuploadcontainer    {
            margin-top: 10px;
        }