/* primary: #ff9600 */
@import url('https://fonts.googleapis.com/css2?family=Mouse+Memoirs&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Slackey&display=swap');
body {
	font-family: "Mouse Memoirs", system-ui;
	font-weight: 400;
	font-style: normal;
	font-size:1.3rem;
	background-color:#99ffe3;
	color:black;
}

a {
	text-decoration:none;
	color:#ff9600;
}
a:hover {
	text-decoration:none;
	color:#ff9600;
}

.btn-primary {
	background-color:#ff9600;
	border-color:#ff9600;
	color:#111;
}
.btn-primary:hover {
	background-color:#ff8400;
	border-color:#ff8400;
	color:#111;
}

.number {
	font-family: "Slackey", sans-serif;
	font-weight: 800;
	text-transform: uppercase;
	font-style: normal;
}

.fc-orange {
	color:#ff9600;
}

.avatar {
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ff9600;
  background-color: #f8f8f8; /* fallback if image missing */
}

.avatar-sm {
  width: 40px;
  height: 40px;
}

.avatar-md {
  width: 80px;
  height: 80px;
}

.avatar-lg {
  width: 120px;
  height: 120px;
}

.die {
    width: 80px;
    height: 80px;

    border-radius: 16px;

    background: white;

    border: 3px solid #222;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 32px;
    font-weight: bold;

    cursor: pointer;

    user-select: none;

    transition: all 0.2s ease;
}

.die:hover {
    transform: translateY(-2px);
}

.die.locked {
    border-color: #b541a4;
    background: #f8e8f5;
}

.die.selectable {
    border-color: #198754;
    cursor: pointer;
}

.die.selected {
    background: #198754;
    color: white;
    transform: scale(1.05);
}

.die.locked {
    background: #999;
    border-color: #666;
    color: white;

    opacity: 0.7;

    cursor: not-allowed;
}