#inventory2
{
    z-index: 0;
    width: 362px;
    height: 504px;
    background-repeat: no-repeat;
    background-image: url(../img/fragment.png);
    border-spacing: 0px;
}

table.inventory2 tr
{
    height: 45px;
    padding: 0;
    margin: 0;
}

table.inventory2 td
{
    margin: 0;
    text-align: center;
    padding: 0;
}

td.characterItem {
	position: relative;
}

td.characterItem div.countable {
    position: absolute;
	font-weight: bold;
	font-size: 11px;
    top: 29px;
    left: 5px;
    color: white;
}


#noItem
{
	padding-left: 45px;
	padding-bottom: 0px;
}

.itemInfo
{
	display: none;
	padding: 5px;
	opacity: 1;
	width: 200px;
	color: #FFFFFF;
	background: #000000;
	z-index: 999;
}
#itemType-0
{
	color: #c87cc7;
}

#itemType-1
{
	color: #8080ff;
}

#itemType-2
{
	color: #ffff00;
}

#itemType-3
{
	color: #80ff00;
}

#itemType-4
{
	color: #dcc77c;
}

.itemBonuses
{
	color: #80ff00;
}

#character
{
	z-index: 0;
}
.sealed {
    position: absolute;
    width: 80%;
    height: 80%;
    top: 4px;
    left: 6px;
    background: rgb(200 196 80 / 33%);
}

.chat-window {
    width: 677px;
    height: 385px;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.chat-header {
    background-color: #444;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-weight: bold;
}
.chat-body {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    background-color: #272626;
}
.chat-message {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.chat-message strong {
    color: #ff9800;
}
.chat-message a {
    color: #ff9800;
    text-decoration: none;
    font-weight: bold;
}
.chat-message p {
    margin: 0;
    flex-grow: 1;
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;
}
.chat-message small {
    font-size: 12px;
    color: #888;
    margin-left: 10px;
    white-space: nowrap;
    align-self: flex-start;
}

.shout-window {
    width: 100%;
    height: 470px;
    border: 3px solid #555;
    border-radius: 10px;
    background: rgba(30, 30, 30, 0.9);
    overflow-y: auto;
    padding: 15px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.6);
    font-family: Arial, sans-serif;
}
.shout-message_1, .shout-message_2 {
    position: relative;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.4);
}
.shout-message_1 {
    position: relative;
    margin: 10px 0;
    padding: 10px;
    border-left: 3px solid blue;
    background: rgba(0, 0, 255, 0.1);
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.4);
}
.shout-message_2 {
    margin: 10px 0;
    padding: 10px;
    border-left: 3px solid red;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.4);
}
.shout-user {
    color: #00ff00;
    font-weight: bold;
}
.shout-text {
    color: #ffffff;
}
.shout-window small {
    font-size: 12px;
    color: #888;
    position: absolute;
    top: 10px;
    right: 10px;
    white-space: nowrap;
}
