﻿.component {
    display: flex;
    flex-direction: column;
}

    .component .header {
        display: flex;
        border-bottom: 1px solid #1f1f1f;
        margin-bottom: 20px;
        padding-bottom: 5px;
    }

        .component .header .action-bar {
            display: flex;
            margin-left: auto;
            justify-content: space-between;
        }

            .component .header .action-bar button {
                display: flex;
                justify-content: center;
                align-items: center;
                margin: 0 3px;
                text-decoration: none;
                color: #626262;
            }

                .component .header .action-bar button:hover {
                    background-color: #1456f1;
                    color: #fff;
                }
