/* Genel stiller */
body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Tahoma', sans-serif;
    overflow: hidden;
}

.desktop {
    height: 100vh;
    width: 100vw;
    background-image: url('icons/background.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
}

.taskbar {
    background: linear-gradient(to bottom, #245edb 0%, #3f8cf3 9%, #245edb 18%, #245edb 92%, #154aa7 100%);
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    margin-top: auto;
    position: fixed;
    bottom: 0;
    width: 100%;
    justify-content: space-between;
}

.start-button {
    width: 96px;
    height: 37px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}
.start-menu {
    position: absolute;
    bottom: 40px;
    left: 10px;
    width: 200px;
    background-color: #ececec;
    border: 1px solid #999;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    display: none;
    flex-direction: column;
}
.start-menu-item {
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.start-menu-item img.start-menu-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.start-menu-item:hover {
    background-color: #ddd;
}

.clock {
    font-size: 16px;
    margin-left: auto;
    padding-right: 20px;
    color: white;
}

.icons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 20px;
}

.icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    cursor: pointer;
    position: absolute;
}

.icon img {
    width: 48px;
    height: 48px;
    margin-bottom: 5px;
}

/* Pencere stilleri */
.window {
    position: absolute;
    background-color: #ECE9D8;
    border: 2px solid #0054E3;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    min-width: 200px;
    min-height: 150px;
    resize: both;
    overflow: hidden;
    animation: fadeIn 0.3s ease-out;
}

.window-header {
    background: linear-gradient(to bottom, #0058E6, #3985D8);
    color: white;
    padding: 3px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    cursor: move;
}

.window-content {
    padding: 10px;
    height: calc(100% - 30px);
}

.window-controls {
    display: flex;
    gap: 2px;
}

.window-controls .window-btn {
    width: 20px;
    height: 20px;
    background-color: #0058E6;
    border: none;
    cursor: pointer;
    background-size: 16px 16px;
    background-repeat: no-repeat;
    background-position: center;
}

.window-controls .minimize-btn {
    background-image: url('icons/ikon1.png');
}

.window-controls .maximize-btn {
    background-image: url('icons/ikon2.png');
}

.window-controls .close-btn {
    background-image: url('icons/ikon3.png');
}

.window-controls .window-btn:hover {
    background-color: #003C9D;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Sağ tıklama menüsü */
.context-menu {
    position: absolute;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.context-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.context-menu ul li {
    padding: 8px 60px 8px 10px;
    cursor: pointer;
    border-bottom: solid 1px #d9d9d9;
	font-size: 12px;
}

.context-menu ul li:hover {
    background-color: #eee;
}


/* Chat penceresi stil dosyası */
#messenger {
    position: absolute;
    width: 400px;
    height: 600px;
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    z-index: 10;
    top: 100px;
    left: 100px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

#messenger .window-header {
    background-color: #0078d7;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#messenger .window-header img {
    height: 20px;
    margin-right: 5px;
}

#messenger .window-content {
    padding: 10px;
}

#messenger .close-btn {
    background-color: transparent;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

#nickname-section, #chat-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#chat-window {
    flex-grow: 1;
    border: 1px solid #ccc;
    padding: 10px;
    overflow-y: auto;
    background-color: white;
    height: 400px;
    font-size: 20px;
    display: flex;
    flex-direction: column;
}

#chat-input {
    width: calc(100% - 60px);
    padding: 5px;
}

#nickname-input, #nickname-color, button {
    padding: 5px;
}

/* Yeni eklenen stiller */
.message-bubble {
    max-width: 60%; /* 70%'den 60%'a düşürdük */
    margin: 3px 5px; /* Kenar boşluklarını azalttık */
    padding: 5px; /* İç boşluğu azalttık */
    border-radius: 10px; /* Köşe yuvarlaklığını azalttık */
    background-color: #DCF8C6;
    word-wrap: break-word;
    align-self: flex-start;
    display: inline-block;
    font-size: 0.7em; /* Yazı boyutunu %50 küçülttük */
}

.message-bubble.self {
    align-self: flex-end;
    background-color: #E1E1E1;
}

.message-nickname {
    font-weight: bold;
    margin-right: 3px;
    display: inline;
}

.message-text {
    display: inline;
}

.message-time {
    font-size: 0.6em; /* Zaman damgası boyutunu da küçülttük */
    color: #888;
    display: block;
    text-align: right;
    margin-top: 1px;
}

/* Notepad stili */
#notepad .window-content {
    display: flex;
    flex-direction: column;
}

#notepad textarea {
    flex-grow: 1;
    margin-bottom: 10px;
}

#notepad input[type="text"] {
    margin-bottom: 10px;
}

#notepad button {
    margin-right: 5px;
}

/* Beenzt stili */
#Beenzt .window-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.toolbar {
    display: flex;
    justify-content: space-around;
    width: 100%;
    background-color: #f0f0f0;
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.toolbar input, .toolbar select, .toolbar button {
    margin: 0 5px;
    padding: 5px;
}

.toolbar button img {
    width: 24px;
    height: 24px;
}

#BeenztCanvas {
    margin-top: 10px;
    background-color: white;
    border: 1px solid black;
}

/* Internet Explorer stilleri */
#ie {
    width: 800px;
    height: 600px;
    background-color: #fff;
    color: #000;
}

.ie-toolbar {
    display: flex;
    align-items: center;
    padding: 5px;
    background-color: #f1f1f1;
    border-bottom: 1px solid #ccc;
}

.ie-toolbar button {
    background-color: #e1e1e1;
    border: none;
    padding: 5px 10px;
    margin-right: 5px;
    cursor: pointer;
    font-size: 16px;
}

.ie-toolbar button:hover {
    background-color: #d1d1d1;
}

.ie-toolbar input {
    flex-grow: 1;
    padding: 5px;
    margin-right: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

#ieBrowser {
    width: 100%;
    height: calc(100% - 40px); /* 40px is the height of the toolbar */
    border: none;
    display: block;
}



/* Snake Game stilleri */
#snake {
    width: 620px;
    height: 670px;
    background-color: #fff;
    color: #000;
}

#snakeCanvas {
    border: 1px solid #000;
    display: block;
    margin: 0 auto;
    background-color: #fff;
}

#snake-score {
    text-align: center;
    font-size: 18px;
    margin-bottom: 10px;
}

/* Media Player stilleri */
.media-player {
    display: flex;
    justify-content: space-between;
}

.video-list {
    width: 30%;
    background-color: #f1f1f1;
    padding: 10px;
    border-right: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin: 10px;
}

.video-list h3 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 20px;
    background-color: #000;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.video-list ul {
    list-style: none;
    padding: 0;
    background-color: #e0e0e0;
    border-radius: 8px;
    padding: 10px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
    height: 400px;
    overflow-y: auto;
}

.video-list li {
    padding: 5px;
    cursor: pointer;
    background-color: #ccc;
    margin-bottom: 5px;
    text-align: center;
    font-size: 12px;
    border-radius: 4px;
    display: flex;
    align-items: center;
}

.video-list li span {
    flex-shrink: 0;
    width: 20px;
    text-align: center;
    margin-right: 10px;
}

.video-list li:hover {
    background-color: #aaa;
}

.video-container {
    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Beenz GIF Stilleri */
#BeenzGifContainer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

#BeenzGif {
    width: 100px;
    height: auto;
    cursor: pointer;
}

/* Beenz Generator Özel Stilleri */
#meme-generator {
    position: absolute;
    background-color: #ECE9D8;
    border: 2px solid #0054E3;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    width: 900px; /* Başlangıçta genişliği ayarla */
    height: 600px; /* Başlangıçta yüksekliği ayarla */
    resize: both;
    overflow: hidden;
    animation: fadeIn 0.3s ease-out;
}

#meme-generator #Beenz-canvas {
    border: 1px solid black;
    display: block;
    margin: 0 auto;
}

#meme-generator .toolbar {
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
}

#meme-generator .toolbar button,
#meme-generator .toolbar input[type="text"],
#meme-generator .toolbar input[type="color"] {
    padding: 3px; /* Butonları %25 küçült */
    cursor: pointer;
    margin: 5px; /* Varsayılan buton aralığı */
}

#meme-generator .toolbar #meme-text {
    margin-left: -40px; /* Add Text butonuna daha fazla boşluk bırakmak için */
}

#meme-generator .toolbar #text-color {
    margin-left: 10px; /* Text Color paletine daha fazla boşluk bırakmak için */
}
#meme-generator .toolbar #add-text {
    margin-left: -40px; /* Add Text butonuna daha fazla boşluk bırakmak için */
}
#meme-generator .toolbar #change-background {
    margin-left: -40px; /* Add Text butonuna daha fazla boşluk bırakmak için */
}

/* Beenznake Game Özel Stilleri */
#Beenznake-game {
    position: absolute;
    background-color: #ECE9D8;
    border: 2px solid #0054E3;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    width: 850px; /* Başlangıçta genişliği ayarla */
    height: 800px; /* Başlangıçta yüksekliği ayarla */
    resize: both;
    overflow: hidden;
    animation: fadeIn 0.3s ease-out;
}

#Beenznake-canvas {
    border: 1px solid black;
    display: block;
    margin: 0 auto;
    background-color: #77989f; /* Oyun arka planı */
}

#Beenznake-scoreboard {
    text-align: center;
    font-size: 24px;
    margin-top: 10px;
}

#Beenznake-how-to-play {
    text-align: center;
    font-size: 12px;
    margin-top: 5px;
}

#Beenznake-timer {
    text-align: left;
    font-size: 14px;
    margin-top: 5px;
    position: absolute;
    bottom: 10px;
    left: 10px;
}

#convert-button {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 10px 20px;
    font-size: 14px;
    background-color: #ab9ff3;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, box-shadow 0.3s;
}

#convert-button:hover {
    background-color: #ab9ff3;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1);
}

#convert-button:active {
    background-color: #004085;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#Beenznake-congrats {
    text-align: center;
    font-size: 16px;
    color: green;
    display: none;
}

.contact-info {
    color: red; /* İstediğiniz renk kodunu buraya yazabilirsiniz */
}



