.cafe-showcase {
    max-width: 640px;
    margin: 12px auto;
    font-family: Arial, sans-serif;
}
.barista-line{
    display:flex;
    gap:14px;
    justify-content:center;
    flex-wrap:wrap;
    margin:12px 0;
}

/* Карточка */
.barista-card{
    width:120px;
    background:linear-gradient(180deg,#2b2b2b,#171717);
    border-radius:16px;
    padding:10px 8px 12px;
    text-align:center;
    box-shadow:0 4px 12px rgba(0,0,0,.6);
    position:relative;
}

/* Аватар */
.barista-card img{
    width:68px;
    height:68px;
    border-radius:50%;
    border:2px solid #444;
    object-fit:cover;
    background:#111;
}

/* Ник */
.barista-name{
    margin:6px 0 2px;
    font-size:13px;
    color:#ffd36b;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

/* Процент */
.barista-profit{
    font-size:11px;
    color:#8fdc8f;
    margin-bottom:4px;
}

/* Кнопки */
.barista-btn{
    display:block;
    margin-top:6px;
    padding:6px 0;
    font-size:12px;
    border-radius:10px;
    text-decoration:none;
    color:#fff;
}

/* Нанять */
.barista-btn.hire{
    background:linear-gradient(180deg,#4a8cff,#2f61d6);
}

/* Уволить */
.barista-btn.fire{
    background:linear-gradient(180deg,#ff5c5c,#c73434);
}

.billing-balance{
    display:flex;
    justify-content:space-around;
    margin:10px 0;
}

.bal-card{
    background:linear-gradient(180deg,#2b2b2b,#1a1a1a);
    border-radius:14px;
    padding:10px;
    width:90px;
    text-align:center;
    box-shadow:0 0 10px rgba(0,0,0,.6);
}

.bal-card img{
    width:28px;
    margin-bottom:4px;
}

.bal-card div{
    font-weight:bold;
    color:#ffd36b;
}

/* Кнопки */
.billing-actions{
    display:flex;
    gap:10px;
    margin:10px;
}

.bill-btn{
    flex:1;
    text-align:center;
    padding:8px;
    border-radius:12px;
    color:#fff;
    text-decoration:none;
}

.bill-btn.plus{
    background:linear-gradient(180deg,#3daeff,#2b66d1);
}

.bill-btn.minus{
    background:linear-gradient(180deg,#ff5c5c,#c73434);
}

/* Статистика */
.billing-stats{
    display:flex;
    gap:8px;
    margin:10px;
}

.stat{
    flex:1;
    background:#222;
    border-radius:12px;
    padding:8px;
    text-align:center;
}

.stat span{
    font-size:11px;
    color:#aaa;
}

.stat b{
    font-size:16px;
}

.stat.green b{color:#7adf7a;}
.stat.red b{color:#ff7a7a;}

/* Доход */
.billing-income{
    background:linear-gradient(180deg,#272727,#1a1a1a);
    margin:10px;
    padding:12px;
    border-radius:14px;
    text-align:center;
}
.billing-form input,
.billing-form select{
    width:100%;
    padding:8px;
    border-radius:10px;
    background:#111;
    border:1px solid #444;
    color:#fff;
}

.billing-form input[type=submit]{
    background:linear-gradient(180deg,#4a8cff,#2f61d6);
    border:none;
    margin-top:6px;
}
.billing-income b{
    font-size:20px;
    color:#ffd36b;
}

/* Бариста доход */
.barista-income-line{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    justify-content:center;
}

.barista-income-card{
    width:110px;
    background:#1c1c1c;
    border-radius:14px;
    padding:8px;
    text-align:center;
}

.barista-income-card img{
    width:48px;
    height:48px;
    border-radius:50%;
}

.barista-income-card .name{
    font-size:12px;
    color:#ffd36b;
}

.barista-income-card .income{
    font-size:13px;
    color:#7adf7a;
}
.barista-btn:hover{
    filter:brightness(1.1);
}

/* ===== ФОРМА НАЙМА ===== */

.hire-form{
    background:linear-gradient(180deg,#262626,#1b1b1b);
    border-radius:14px;
    padding:12px;
    box-shadow:0 0 10px rgba(0,0,0,.5);
}

.hire-form input[type=text]{
    width:100%;
    padding:8px;
    border-radius:10px;
    border:1px solid #444;
    background:#111;
    color:#fff;
    margin:6px 0 10px;
}

.hire-form input[type=submit]{
    width:100%;
    padding:8px;
    border-radius:12px;
    border:none;
    background:linear-gradient(180deg,#4a8cff,#2f61d6);
    color:#fff;
    font-weight:bold;
}
.recepies {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 10px;
}
.cafe-actions{
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-top: 10px;
}

.cafe-enter{
	display: block;
	text-align: center;
	padding: 8px 0;
	border-radius: 10px;
	background: linear-gradient(180deg,#2a2f3a,#1a1d25);
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	box-shadow: 0 0 8px rgba(0,0,0,.6);
}

.cafe-enter:hover{
	background: linear-gradient(180deg,#3a4050,#232735);
}

.cafe-cabinet{
	font-size: 13px;
	opacity: .9;
}
.recep-card {
	background: linear-gradient(180deg, #1d1f25, #14161b);
	border-radius: 12px;
	padding: 10px;
	box-shadow: 0 0 10px #000;
	display: flex;
	flex-direction: column;
}

.recep-card img {
	width: 100%;
	height: 140px;
	object-fit: cover;
	border-radius: 10px;
	margin-bottom: 8px;
}

.recep-title {
	font-size: 15px;
	font-weight: bold;
	color: #ffd56a;
	margin-bottom: 4px;
}

.recep-about {
	font-size: 13px;
	color: #cfcfcf;
	flex: 1;
	margin-bottom: 6px;
}

.recep-info {
	font-size: 12px;
	color: #aaa;
	display: flex;
	justify-content: space-between;
	margin-bottom: 6px;
}
.recep-price img {
	width: 14px !important;
	height: 14px !important;
	vertical-align: middle;
}

.recep-actions {
	display: flex;
	justify-content: space-between;
	gap: 5px;
}

.recep-actions a {
	flex: 1;
	text-align: center;
	padding: 6px 0;
	background: #222;
	border-radius: 8px;
	font-size: 13px;
	text-decoration: none;
	color: #fff;
}

.recep-actions a:hover {
	background: #2f3440;
}
.cafe-card {
    position: relative;
    display: flex;
    align-items: center;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(90,50,25,.95), rgba(40,22,12,.95));
    border: 1px solid rgba(255,210,150,.15);
    box-shadow:
        0 0 20px rgba(0,0,0,.6),
        inset 0 0 15px rgba(255,200,120,.08);
    overflow: hidden;
}

.cafe-card:before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,220,170,.6), transparent);
}

.cafe-icon-wrap {
    position: relative;
    margin-right: 12px;
}

.cafe-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    box-shadow: 0 0 12px rgba(0,0,0,.7);
    border: 2px solid rgba(255,220,170,.25);
}

.cafe-glow {
    position: absolute;
    inset: -4px;
    border-radius: 16px;
    background: radial-gradient(circle, rgba(255,200,120,.35), transparent 70%);
    pointer-events: none;
}

.cafe-body {
    flex: 1;
    color: #f6e8d5;
}

.cafe-name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 6px;
}

.barista-row {
    display: flex;
    gap: 10px;
}

.barista {
    position: relative;
    width: 38px;
    height: 38px;
}

.barista img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #1b0f08;
    box-shadow: 0 0 8px rgba(0,0,0,.6);
}

.barista-status {
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 2px solid #1b0f08;
}

.barista-status.on {
    background: #35ff62;
    box-shadow: 0 0 8px #35ff62;
}

.barista-status.off {
    background: #666;
}

.cafe-enter {
    margin-left: 10px;
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #b36b2e, #e6a85c);
    box-shadow: 0 0 10px rgba(0,0,0,.6);
}

.cafe-enter:hover {
    opacity: .9;
}
/* ===== CAFE INTERIOR ===== */
.cafe-room {
    max-width: 640px;
    margin: 12px auto;
    font-family: Arial, sans-serif;
    color: #f4e9da;
}

.cafe-room-header {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #3b2214, #5a331c);
    padding: 14px;
    border-radius: 18px;
    box-shadow: 0 0 20px rgba(0,0,0,.6);
    margin-bottom: 12px;
}

.cafe-room-header img {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    margin-right: 12px;
    border: 2px solid rgba(255,220,170,.3);
    box-shadow: 0 0 12px rgba(0,0,0,.7);
}

.cafe-room-title b {
    display: block;
    font-size: 18px;
}

.cafe-room-title span {
    font-size: 12px;
    color: #e6caa4;
}

.cafe-block {
    background: linear-gradient(135deg, #2a1910, #3a2316);
    border-radius: 16px;
    padding: 12px;
    margin-bottom: 12px;
    box-shadow: inset 0 0 15px rgba(0,0,0,.6);
    border: 1px solid rgba(255,210,160,.12);
}

.cafe-block h3 {
    margin: 0 0 10px;
    font-size: 15px;
    color: #ffcf8a;
}

.barista-line {
    display: flex;
    gap: 10px;
}

.barista-card {
    text-align: center;
    width: 60px;
}

.barista-card img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid #1b0f08;
    box-shadow: 0 0 8px rgba(0,0,0,.6);
}

.barista-status {
    margin: 4px auto 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #000;
}

.barista-status.on {
    background: #3cff6f;
    box-shadow: 0 0 6px #3cff6f;
}

.barista-status.off {
    background: #777;
}

.barista-name {
    font-size: 11px;
    margin-top: 2px;
}

.coffee-item {
    display: flex;
    align-items: center;
    background: rgba(0,0,0,.35);
    border-radius: 12px;
    padding: 8px;
    margin-bottom: 8px;
}

.coffee-item img {
    width: 42px;
    height: 42px;
    margin-right: 10px;
}

.coffee-info {
    flex: 1;
}

.coffee-info b {
    display: block;
    font-size: 14px;
}

.coffee-info span {
    font-size: 12px;
    color: #d7c0a0;
}

.coffee-price {
    font-weight: bold;
    font-size: 13px;
    color: #9cff9c;
}

.coffee-buy {
    display: block;
    margin-top: 6px;
    text-align: center;
    padding: 6px;
    border-radius: 10px;
    background: linear-gradient(135deg, #9c5a24, #e6a85c);
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
}

.coffee-buy:hover {
    opacity: .9;
}
.coffee-table{
    width:100%;
    border-collapse:collapse;
    background:#111;
    color:#fff;
    border-radius:10px;
    overflow:hidden;
}

.coffee-table th,
.coffee-table td{
    padding:8px 10px;
    border-bottom:1px solid #333;
    text-align:left;
    font-size:14px;
}

.coffee-table th{
    background:linear-gradient(180deg,#222,#111);
    font-weight:bold;
}

.coffee-table tr:hover{
    background:#1a1a1a;
}

.coffee-buy{
    padding:4px 8px;
    border:none;
    border-radius:6px;
    background:linear-gradient(180deg,#4a8cff,#2f61d6);
    color:#fff;
    cursor:pointer;
    font-size:13px;
}

.coffee-buy:hover{
    background:linear-gradient(180deg,#2f61d6,#1a3a8c);
}
.barista-notifications {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 8px;
    max-width: 350px;
    font-family: Arial, sans-serif;
}

.barista-notifications h3 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #856404;
}

.barista-notifications ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.barista-notifications li {
    margin-bottom: 5px;
}

.barista-notifications li a {
    text-decoration: none;
    color: #0c5460;
    font-weight: bold;
}

.barista-notifications li a:hover {
    text-decoration: underline;
}