/* Genel Stiller */
body {
    background-color: #f8f9fa;
}

/* Navbar Stilleri */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.navbar-brand {
    font-weight: bold;
}

/* Kart Stilleri */
.card {
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
    margin-bottom: 1rem;
}

.card-title {
    color: #2c3e50;
    font-weight: 600;
}

/* Form Stilleri */
.form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

/* Buton Stilleri */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Profil Resmi Stilleri */
.profile-picture {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
}

/* Gönderi Stilleri */
.post-card {
    transition: transform 0.2s;
}

.post-card:hover {
    transform: translateY(-2px);
}

/* Bağlantı Stilleri */
.connection-card {
    transition: all 0.2s;
}

.connection-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15);
}

/* İş İlanı Stilleri */
.job-card {
    transition: all 0.2s;
}

.job-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15);
}

.job-type-badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
}

/* Responsive Stiller */
@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .card {
        margin-bottom: 1rem;
    }
    
    .profile-picture {
        width: 100px;
        height: 100px;
    }
}

/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

/* Post Actions */
.post-actions {
    border-top: 1px solid #dee2e6;
    padding-top: 1rem;
    margin-top: 1rem;
}

.post-actions .btn {
    border-radius: 20px;
    padding: 0.375rem 1rem;
}

.post-actions .btn.active {
    background-color: #0d6efd;
    color: white;
}

.post-actions .btn i {
    margin-right: 0.5rem;
}

/* Comments */
.post-comments {
    border-top: 1px solid #dee2e6;
    padding-top: 1rem;
}

.comment {
    margin-bottom: 1rem;
}

.comment .card {
    border: none;
    background-color: #f8f9fa;
}

.comment .card-body {
    padding: 0.75rem;
}

.comment-form {
    margin-top: 1rem;
}

.comment-form .input-group {
    background-color: #f8f9fa;
    border-radius: 20px;
    padding: 0.5rem;
}

.comment-form .form-control {
    border: none;
    background-color: transparent;
}

.comment-form .form-control:focus {
    box-shadow: none;
}

.comment-form .btn {
    border-radius: 50%;
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Like and Comment Counts */
.like-count,
.comment-count {
    margin-left: 0.25rem;
    font-size: 0.875rem;
}

/* Network Page Styles */
.network-page .card a {
    color: #2c3e50;
    transition: color 0.2s;
}

.network-page .card a:hover {
    color: #007bff;
}

.network-page .card {
    transition: transform 0.2s;
}

.network-page .card:hover {
    transform: translateY(-2px);
}

/* Profile Links */
.card a {
    color: #2c3e50;
    transition: color 0.2s;
}

.card a:hover {
    color: #007bff;
    text-decoration: none;
}

/* Message Styles */
.message-preview {
    border-bottom: 1px solid #dee2e6;
    transition: background-color 0.2s;
}

.message-preview:hover {
    background-color: #f8f9fa;
}

.message-preview.active {
    background-color: #e9ecef;
}

.messages-container {
    padding: 1rem;
}

.message {
    margin-bottom: 1rem;
    max-width: 70%;
}

.message-sent {
    margin-left: auto;
}

.message-received {
    margin-right: auto;
}

.message-content {
    padding: 0.75rem;
    border-radius: 1rem;
    background-color: #f8f9fa;
}

.message-sent .message-content {
    background-color: #007bff;
    color: white;
}

.message-received .message-content {
    background-color: #f8f9fa;
}

.message-content small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.75rem;
}

.message-sent .message-content small {
    color: rgba(255, 255, 255, 0.8);
} 