.license-container {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 5px;
    margin-top:20px;
    border: 1px solid #cccccc;
}
.license-header, .license-row {
    display: flex;
    justify-content: space-between;
}

.license-row:nth-child(odd) {
    background-color: #f4f4f4;
}

.license-header a {
    text-decoration: none;
}

.license-column {
    padding: 8px 10px;
    box-sizing: border-box;
}

.license-header .license-column:first-child,
.license-header .license-column:nth-child(2),
.license-row .license-column:first-child,
.license-row .license-column:nth-child(2) {
    width: 75px;
}

.license-header .license-column:nth-child(3),
.license-row .license-column:nth-child(3) {
    width: 100px;
}

.license-header .license-column:nth-child(4),
.license-row .license-column:nth-child(4) {
    width: 200px;
}

.license-header .license-column:nth-child(5),
.license-row .license-column:nth-child(5) {
    width: 100px;
}

.license-header .license-column:nth-child(6),
.license-row .license-column:nth-child(6) {
    width: 240px;
    display: flex;
}

.license-header .license-column:nth-child(7),
.license-row .license-column:nth-child(7) {
    width: 140px;
}

.license-header .license-column:nth-child(8),
.license-row .license-column:nth-child(8) {
    width: 105px;
}

.license-header .license-column:nth-child(9),
.license-row .license-column:nth-child(9) {
    width: 200px;
}

.license-header .license-column:nth-child(10),
.license-row .license-column:nth-child(10) {
    flex: 1;
    display: flex;
}

.license-header {
    font-weight: bold;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}
.license-row {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}
.license-row:last-child {
    border-bottom: none;
}
.license-container input[type="text"], 
.license-container input[type="date"], 
.license-container select, 
.license-container .button {
    width: 100%;
}
.generate-license {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 5px;
}

.add-license-form {
    display: flex;
    align-items: flex-end;
}

/*-----User Page----------*/
.wbls-license-container {
    display: flex;
    flex-direction: column;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
}

.wbls-license-container .deactivate-license-form {
    display: flex;
}

.deactivate-license-button {
    position: relative;
}

.wbls-activate-license-button-loading:before {
    animation: rotation 1s infinite linear;
    position: absolute;
    content: '';
    width: 18px;
    height: 18px;
    background: url(../images/loader.svg) no-repeat;
    background-size: 18px;
    top: calc(50% - 9px);
    left: calc(50% - 9px);
    display: inline-block;
}

/* Keyframes for the rotation */
@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Apply the animation */
.rotating-element {
    animation: rotation 1s infinite linear;
}
