@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --body-color: #E4E9F7;
    --sidebar-color: #FFF;
    --primary-color: #695CFE;
    --primary-color-light: #F6F5FF;
    --toggle-color: #DDD;
    --text-color: #707070;
    --cotents-color: #000000;
    --itext-color: #494747;
    --table-color: #d1d3d8;
    --tablemenu-color: #a4adc4;

    --tran-02: all 0.2s ease;
    --tran-03: all 0.3s ease;
    --tran-04: all 0.4s ease;
    --tran-05: all 0.5s ease;
}

body {
    height: 100vh;
    background: var(--body-color);
    transition: var(--tran-05);
}


.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 250px;
    padding: 10px 14px;
    background: var(--sidebar-color);
    transition: var(--tran-05);
    z-index: 100;
}


.sidebar.close {
    width: 88px;
}

.sidebar .text {
    font-size: 15px;
    font-weight: 5;
    color: var(--text-color);
    transition: var(--tran-04);
    white-space: nowrap;
    opacity: 1;
}

.sidebar.close .text {
    opacity: 0;
}

.sidebar .image {
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar li {
    height: 50px;
    margin-top: 5px;
    list-style: none;
    display: flex;
    align-items: center;
}

.sidebar li .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    font-size: 20px;
}

.sidebar li .icon,
.sidebar li .text {
    color: var(--text-color);
    transition: var(--tran-02);
}

.sidebar header {
    position: relative;
}

.sidebar .image-text img {
    width: 40px;
    border-radius: 6px;
}

.nav-text {
    display: none;
    color: #000000;
}

.sidebar header .image-text {
    display: flex;
    align-items: center;
}

header .image-text .header-text {
    display: flex;
    flex-direction: column;
}

.header-text .name {
    font-weight: 600px;
}

.header-text .profession {
    margin-top: -2px;
}

.sidebar header .toggle {
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateY(-50%) rotate(180deg);
    height: 25px;
    width: 25px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--sidebar-color);
    font-size: 22px;
    transition: var(--tran-03);
}

.sidebar.close header .toggle {
    transform: translateY(-50%);
}

.sidebar .menu {
    margin-top: 15px;
}

.sidebar .search-box {
    background: var(--primary-color-light);
    border-radius: 6px;
    transition: var(--tran-05);
}

.search-box input {
    height: 100%;
    width: 100%;
    outline: none;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    background: var(--primary-color-light);
    transition: var(--tran-05);
}

.sidebar li a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    text-decoration: none;
    border-radius: 6px;
    transition: var(--tran-04);
}

.sidebar li a:hover {
    background: var(--primary-color);
}

.sidebar li a:hover .icon,
.sidebar li a:hover .text {
    color: var(--sidebar-color);
}

.sidebar .menu-bar {
    height: calc(100% - 50px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.home {
    position: relative;
    height: 100vh;
    left: 250px;
    width: calc(100% - 250px);
    background: var(--body-color);
    transition: var(--tran-05);
}

.home .text {
    font-size: 30px;
    font-weight: 500;
    color: var(--text-color);
    padding: 8px 40px;
}

.sidebar.close~.home {
    left: 88px;
    width: calc(100% - 88px);
}

/* wrapper */
.page-wrapper {
    min-height: 100%;
}

.page-wrapper a:hover {
    color: #006669;
}

/* ====== Icerik kismi  ====== */

.ihome {
    position: relative;
    height: 100vh;
    left: 250px;
    width: calc(100% - 250px);
    background: var(--body-color);
    transition: var(--tran-05);
}

.home .textıngs {
    font-size: 30px;
    font-weight: 500;
    color: var(--text-color);
    padding: 8px 40px;
}

.home .textıng {
    font-size: 55px;
    font-weight: 500;
    color: var(--contents-color);
    padding: 8px 40px;
}

.home .itext {
    font-size: 18px;
    font-weight: 500;
    color: var(--itext-color);
    padding: 8px 40px;
}

.table {
    display: flex;
    width: 1180px;
    margin: auto auto;
    height: 140px;
    border-radius: 15px;
    background-color: var(--table-color);
    color: var(--cotents-color);
    transition: transform 2s;
}

.table .text-work {
    display: 30px;
    text-align: center;
    margin: auto auto;
    transition: transform .2s;
}

.table:hover {
    color: #fff;
    background-color: #000000;
    transition: background-color 0.5s;
    transition-delay: 10ms;
}

.table a {
    text-decoration: none;
    color: var(--itext-color);
}

.table .text-work:hover {
    transform: scale(1.5);
    transition-delay: 10ms;
}

.thome {
    position: relative;
    height: 100vh;
    left: 250px;
    padding: 20px 60px;
    width: calc(100% - 250px);
    background: var(--body-color);
    transition: var(--tran-05);
}

.thome .text {
    font-size: 30px;
    font-weight: 500;
    color: var(--text-color);
    padding: 8px 40px;
}

.pixelbaslik {
    font-family: Monospace;
    font-size: 50px;
    margin-top: 70px;
    margin-left: 35px;
    color: var(--contents-color);
}

.sidebar.close~.thome {
    left: 88px;
    width: calc(100% - 88px);
}

a {
    text-decoration: none;
}

.swiper {
    width: 600px;
    height: 300px;
}

button {
    color: #006669;
}

.tablemenu {
    display: flex;
    width: 1180px;
    margin: auto auto;
    height: 140px;
    border-radius: 15px;
    background-color: var(--tablemenu-color);
    color: var(--cotents-color);
    transition: transform 2s;
}

.tablemenu .textmenu-work {
    display: 30px;
    text-align: center;
    margin: auto auto;
    transition: transform .2s;
}

.tablemenu:hover {
    color: #fff;
    background-color: #000000;
    transition: background-color 0.5s;
    transition-delay: 10ms;
}

.tablemenu a {
    text-decoration: none;
    color: var(--itext-color);
}
/* Sadece Pomodoro için temel stiller (mevcut stilinize göre ayarlayın) */

.content {
    display: flex;
    justify-content: center; /* Yatayda ortala */
    align-items: center; /* Dikeyde ortala (sayfa yüksekliği uygunsa) */
    min-height: 100vh; /* Sayfa yüksekliğinin tamamını kullan (navigasyonu hesaba katın) */
    padding: 20px;
}

.pomodoro-container {
    background-color: #f0f0f0; /* Açık bir arka plan */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 300px;
}

.timer-display {
    font-size: 5em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.status {
    font-size: 1.2em;
    margin-bottom: 25px;
    color: #555;
}

.controls button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 10px 15px;
    margin: 5px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s;
}

.controls button:hover {
    background-color: #2980b9;
}

/* Ses butonu için özel stil */
#sound-toggle-button {
    background-color: #2ecc71;
}

#sound-toggle-button:hover {
    background-color: #27ae60;
}