td img {display: block;}
body,td,th {font-family: Verdana, Arial, Helvetica, sans-serif;}
body {
    background-color: #666666;
}

a, a:link, a:visited {
    text-decoration: none;
}

.text-center {
    text-align: center;
}
.button-container {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}
.custom-button {
    /*background: linear-gradient(to bottom, #FF6600, #FF3300);*/
    background: linear-gradient(to bottom, #FF6600, #df3004);
    color: white;
    
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    
    border: none;
    padding: 10px 15px;
    text-align: left;
    /*border-radius: 5px;*/
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;;
}

.custom-button::after {
    content: "";
    width: 40px;
    height: 100%;
    background: linear-gradient(to bottom, #FF6600, #df3004);
    /*border-radius: 50%;*/
    position: absolute;
    right: -30px; /* Beyaz boşluk eklemek için pozisyonu dışa kaydır */
    border: 5px solid white; /* Buton ile after arasında beyaz boşluk */
}

.custom-button:hover {
    background: linear-gradient(to bottom, #FF3300, #FF6600);
}
.custom-button:hover::after {
    background: linear-gradient(to bottom, #FF3300, #FF6600);
}

.custom-button:active {
    background: linear-gradient(to bottom, #FF9900, #FF6600);
}


.menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 200px;
    margin: 50px auto 0 auto;
}

.menu a {
    font-family: Arial, sans-serif;
    text-decoration: none;
    display: block;
    padding: 15px;
    margin-bottom: 10px;
    background: linear-gradient(to right, #003366, #3366cc); /* Gradient background */
    color: white;
    text-align: center;
    font-size: 18px;
    /*border-radius: 5px;*/
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    background: linear-gradient(to right, #003366, #2b55a9) !important; /* Gradient background */
}

.sidebarTd{
    background-color: #FFF;
}





.style1 {
	font-size: 14px;
	color: #000B77;
	font-style: italic;
	font-weight: bold;
}
.style2 {
	font-size: 12px;
	color: #000099;
}
.style3 {	font-size: 24px;
	font-style: italic;
	font-weight: bold;
	color: #020CA1;
}

.container{
    padding: 50px;
    background-color: #FFF;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-sizing: content-box;
}

.baslik{
font-size: 24px !important;
  font-style: italic;
  font-weight: bold;
  color: #020CA1;
  text-align: center;
}

.icerik, .icerik p, .icerik blockquote p, .content{
    font-size: 12px !important;
  color: #020D9D;
}