/* Chakravarthi Akiri */
     .btn-golforb-primary {
        background-color: #F18100;
        color: #002E62;
        border: 2px solid #002E62;
        border-radius: 4px;
        padding: 8px 16px;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .btn-golforb-primary:hover {
        background-color: #002E62;
        color: #F18100;
    }

    .btn-golforb-primary i {
        margin-right: 8px; /* add margin between the icon and the text */
    }

    .btn-golforb-cancel {
        background-color: #CCCCCC;
        color: #444444;
        border: none;
        border-radius: 4px;
        padding: 8px 16px;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .btn-golforb-cancel i {
        margin-right: 8px;
    }

    .btn-golforb-cancel:hover {
        background-color: #EEEEEE;
    }

    .btn-golforb-cancel:active {
        background-color: #999999;
        color: white;
    }

    .modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        border-bottom: 1px solid #CCCCCC;
        background-color: #D4F1F4;
    }

    .modal-header h5 {
        margin: 0;
        font-size: 1.25rem;
        color: #002E62;
    }

    /* Chakravarthi Akiri */