/* MWS Core Plugin - main.css */
.mws-button {
    display:inline-block;
    padding:.6rem 1rem;
    border-radius:.5rem;
    text-decoration:none;
    background:#0ea5e9;
    color:#fff;
    font-weight:600;
}
.mws-button:hover { opacity:.9; }

.mws-breadcrumb {
    margin: .5rem 0 1rem;
    font-size: 14px;
}
.mws-breadcrumb a { text-decoration:none; }

.tk-widget {
    background: #242424;
    padding: 8px 15px;
    width: 240px;
    border-radius: 5px;
    color: #fff;
    font-family: Arial, sans-serif;
	.tk-item {
		display: flex;
		justify-content: space-between;
		border-bottom: 1px solid rgba(255,255,255,0.3);
	}

	.tk-item:last-child {
		border-bottom: none;
	}

	.tk-label {
		font-size: 16px;
	}

	.tk-value {
		font-size: 1.1em;
		font-weight: bold;
		margin-left: 6px;
	}
	
	&.tk-horizontal {
		border-radius: 5px;
		color: #fff;
		display: flex;
		gap: 25px;
		justify-content: center;
		align-items: center;
		width: fit-content;

		.tk-item {
			text-align: center;
		}

		.tk-label {
			display: block;
			font-size: 14px;
			opacity: 0.85;
		}
	}

}

